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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
Index: Source/core/html/forms/BaseCheckableInputType.h
diff --git a/Source/core/html/forms/BaseCheckableInputType.h b/Source/core/html/forms/BaseCheckableInputType.h
index b1409c3cf932ae8aa4fc84f70f47be30d1171869..ffe57df2b010c831e96c9078fc630e0d8b2ed212 100644
--- a/Source/core/html/forms/BaseCheckableInputType.h
+++ b/Source/core/html/forms/BaseCheckableInputType.h
@@ -42,17 +42,17 @@ protected:
virtual void handleKeydownEvent(KeyboardEvent*);
private:
- virtual FormControlState saveFormControlState() const OVERRIDE FINAL;
- virtual void restoreFormControlState(const FormControlState&) OVERRIDE FINAL;
- virtual bool appendFormData(FormDataList&, bool) const OVERRIDE FINAL;
- virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE FINAL;
- virtual bool canSetStringValue() const OVERRIDE FINAL;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE FINAL;
- virtual String fallbackValue() const OVERRIDE FINAL;
- virtual bool storesValueSeparateFromAttribute() OVERRIDE FINAL;
- virtual void setValue(const String&, bool, TextFieldEventBehavior) OVERRIDE FINAL;
- virtual bool isCheckable() OVERRIDE FINAL;
- virtual bool shouldDispatchFormControlChangeEvent(String&, String&) OVERRIDE;
+ virtual FormControlState saveFormControlState() const override final;
+ virtual void restoreFormControlState(const FormControlState&) override final;
+ virtual bool appendFormData(FormDataList&, bool) const override final;
+ virtual void handleKeypressEvent(KeyboardEvent*) override final;
+ virtual bool canSetStringValue() const override final;
+ virtual void accessKeyAction(bool sendMouseEvents) override final;
+ virtual String fallbackValue() const override final;
+ virtual bool storesValueSeparateFromAttribute() override final;
+ virtual void setValue(const String&, bool, TextFieldEventBehavior) override final;
+ virtual bool isCheckable() override final;
+ virtual bool shouldDispatchFormControlChangeEvent(String&, String&) override;
};
} // namespace blink
« no previous file with comments | « Source/core/html/forms/BaseButtonInputType.h ('k') | Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698