Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/forms/FileInputType.h |
| diff --git a/third_party/WebKit/Source/core/html/forms/FileInputType.h b/third_party/WebKit/Source/core/html/forms/FileInputType.h |
| index 7c711812e6111f42928fe60c7f2f4fa05fd3cb03..d3216cf90947b4c798a9f18a14dac46eb3340ff6 100644 |
| --- a/third_party/WebKit/Source/core/html/forms/FileInputType.h |
| +++ b/third_party/WebKit/Source/core/html/forms/FileInputType.h |
| @@ -58,6 +58,8 @@ public: |
| void countUsage() override; |
| + void setFilesFromPaths(Vector<String>) override; |
|
dgozman
2016/06/27 21:07:02
const Vector<String>&
einbinder
2016/06/27 22:41:01
Done.
|
| + |
| private: |
| FileInputType(HTMLInputElement&); |
| InputTypeView* createView() override; |
| @@ -85,7 +87,7 @@ private: |
| // FileChooserClient implementation. |
| void filesChosen(const Vector<FileChooserFileInfo>&) override; |
| - void receiveDropForDirectoryUpload(const Vector<String>&); |
| + void setFilesFromDirectory(const String&); |
| Member<FileList> m_fileList; |
| String m_droppedFileSystemId; |