| Index: Source/core/html/forms/FileInputType.h
|
| diff --git a/Source/core/html/forms/FileInputType.h b/Source/core/html/forms/FileInputType.h
|
| index cff3b2ec3c2fbe0bbddf276ba070e95136a256ef..1245489f22cebff22cf25494611f48b5a29f6b36 100644
|
| --- a/Source/core/html/forms/FileInputType.h
|
| +++ b/Source/core/html/forms/FileInputType.h
|
| @@ -51,34 +51,33 @@ public:
|
|
|
| private:
|
| FileInputType(HTMLInputElement&);
|
| - virtual const AtomicString& formControlType() const override;
|
| - virtual FormControlState saveFormControlState() const override;
|
| - virtual void restoreFormControlState(const FormControlState&) override;
|
| - virtual bool appendFormData(FormDataList&, bool) const override;
|
| - virtual bool valueMissing(const String&) const override;
|
| - virtual String valueMissingText() const override;
|
| - virtual void handleDOMActivateEvent(Event*) override;
|
| - virtual LayoutObject* createRenderer(const LayoutStyle&) const override;
|
| - virtual bool canSetStringValue() const override;
|
| - virtual FileList* files() override;
|
| - virtual void setFiles(FileList*) override;
|
| - virtual bool canSetValue(const String&) override;
|
| - virtual bool getTypeSpecificValue(String&) override; // Checked first, before internal storage or the value attribute.
|
| - virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
|
| - virtual bool receiveDroppedFiles(const DragData*) override;
|
| - virtual String droppedFileSystemId() override;
|
| - virtual void createShadowSubtree() override;
|
| - virtual void disabledAttributeChanged() override;
|
| - virtual void multipleAttributeChanged() override;
|
| - virtual String defaultToolTip() const override;
|
| + const AtomicString& formControlType() const override;
|
| + FormControlState saveFormControlState() const override;
|
| + void restoreFormControlState(const FormControlState&) override;
|
| + bool appendFormData(FormDataList&, bool) const override;
|
| + bool valueMissing(const String&) const override;
|
| + String valueMissingText() const override;
|
| + void handleDOMActivateEvent(Event*) override;
|
| + LayoutObject* createRenderer(const LayoutStyle&) const override;
|
| + bool canSetStringValue() const override;
|
| + FileList* files() override;
|
| + void setFiles(FileList*) override;
|
| + bool canSetValue(const String&) override;
|
| + bool getTypeSpecificValue(String&) override; // Checked first, before internal storage or the value attribute.
|
| + void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
|
| + bool receiveDroppedFiles(const DragData*) override;
|
| + String droppedFileSystemId() override;
|
| + void createShadowSubtree() override;
|
| + void disabledAttributeChanged() override;
|
| + void multipleAttributeChanged() override;
|
| + String defaultToolTip() const override;
|
|
|
| // FileChooserClient implementation.
|
| - virtual void filesChosen(const Vector<FileChooserFileInfo>&) override;
|
| + void filesChosen(const Vector<FileChooserFileInfo>&) override;
|
|
|
| void receiveDropForDirectoryUpload(const Vector<String>&);
|
|
|
| PersistentWillBeMember<FileList> m_fileList;
|
| -
|
| String m_droppedFileSystemId;
|
| };
|
|
|
|
|