Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: Source/core/html/forms/FileInputType.h

Issue 934163004: Modernize coding style in core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/forms/EmailInputType.h ('k') | Source/core/html/forms/FormController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/html/forms/EmailInputType.h ('k') | Source/core/html/forms/FormController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698