| 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..786d5c620af8f98ebbdfeca2a940229e276122c3 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(const Vector<String>&) override;
|
| +
|
| 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;
|
|
|