Home | History | Annotate | Download | only in platform

Lines Matching defs:FileChooser

30 #include "core/platform/FileChooser.h"
39 FileChooser* FileChooserClient::newFileChooser(const FileChooserSettings& settings)
43 m_chooser = FileChooser::create(this, settings);
53 inline FileChooser::FileChooser(FileChooserClient* client, const FileChooserSettings& settings)
59 PassRefPtr<FileChooser> FileChooser::create(FileChooserClient* client, const FileChooserSettings& settings)
61 return adoptRef(new FileChooser(client, settings));
64 FileChooser::~FileChooser()
68 void FileChooser::chooseFile(const String& filename)
75 void FileChooser::chooseFiles(const Vector<String>& filenames)
89 void FileChooser::chooseFiles(const Vector<FileChooserFileInfo>& files)