Searched defs:FileChooser (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DFileChooser.cpp30 #include "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) function in class:WebCore::FileChooser
59 PassRefPtr<FileChooser> FileChooser::create(FileChooserClient* client, const FileChooserSettings& settings)
61 return adoptRef(new FileChooser(client, settings));
64 FileChooser::~FileChooser()
[all...]
H A DFileChooser.h40 class FileChooser;
73 FileChooser* newFileChooser(const FileChooserSettings&);
78 RefPtr<FileChooser> m_chooser;
81 class PLATFORM_EXPORT FileChooser : public RefCounted<FileChooser> { class in namespace:WebCore
83 static PassRefPtr<FileChooser> create(FileChooserClient*, const FileChooserSettings&);
84 ~FileChooser();
97 FileChooser(FileChooserClient*, const FileChooserSettings&);

Completed in 67 milliseconds