HomeSort by relevance Sort by last modified time
    Searched refs:FileChooser (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/
FileChooser.h 39 class FileChooser;
72 FileChooser* newFileChooser(const FileChooserSettings&);
77 RefPtr<FileChooser> m_chooser;
80 class FileChooser : public RefCounted<FileChooser> {
82 static PassRefPtr<FileChooser> create(FileChooserClient*, const FileChooserSettings&);
83 ~FileChooser();
96 FileChooser(FileChooserClient*, const FileChooserSettings&);
FileChooser.cpp 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()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFileChooserCompletionImpl.h 35 #include "core/platform/FileChooser.h"
48 WebFileChooserCompletionImpl(PassRefPtr<WebCore::FileChooser> chooser);
53 RefPtr<WebCore::FileChooser> m_fileChooser;
WebFileChooserCompletionImpl.cpp 36 WebFileChooserCompletionImpl::WebFileChooserCompletionImpl(PassRefPtr<WebCore::FileChooser> chooser)
ChromeClientImpl.h 47 class FileChooser;
136 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>);
137 virtual void enumerateChosenDirectory(WebCore::FileChooser*);
ChromeClientImpl.cpp 89 #include "core/platform/FileChooser.h"
644 void ChromeClientImpl::runOpenPanel(Frame* frame, PassRefPtr<FileChooser> fileChooser)
651 params.multiSelect = fileChooser->settings().allowsMultipleFiles;
652 params.directory = fileChooser->settings().allowsDirectoryUpload;
653 params.acceptTypes = fileChooser->settings().acceptTypes();
654 params.selectedFiles = fileChooser->settings().selectedFiles;
658 params.useMediaCapture = fileChooser->settings().useMediaCapture;
661 new WebFileChooserCompletionImpl(fileChooser);
670 void ChromeClientImpl::enumerateChosenDirectory(FileChooser* fileChooser
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 38 class FileChooser;
124 void runOpenPanel(Frame*, PassRefPtr<FileChooser>);
125 void enumerateChosenDirectory(FileChooser*);
ChromeClient.h 58 class FileChooser;
193 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) = 0;
196 virtual void enumerateChosenDirectory(FileChooser*) = 0;
Chrome.cpp 39 #include "core/platform/FileChooser.h"
352 void Chrome::enumerateChosenDirectory(FileChooser* fileChooser)
354 m_client->enumerateChosenDirectory(fileChooser);
369 void Chrome::runOpenPanel(Frame* frame, PassRefPtr<FileChooser> fileChooser)
372 m_client->runOpenPanel(frame, fileChooser);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp 37 #include "core/platform/FileChooser.h"
85 void EmptyChromeClient::runOpenPanel(Frame*, PassRefPtr<FileChooser>)
EmptyClients.h 147 virtual void enumerateChosenDirectory(FileChooser*) OVERRIDE { }
153 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_platform.target.darwin-arm.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]
webcore_platform.target.darwin-mips.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]
webcore_platform.target.darwin-x86.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]
webcore_platform.target.linux-arm.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]
webcore_platform.target.linux-mips.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]
webcore_platform.target.linux-x86.mk 38 third_party/WebKit/Source/core/platform/FileChooser.cpp \
    [all...]

Completed in 807 milliseconds