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

Unified Diff: Source/core/html/forms/BaseButtonInputType.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/BaseButtonInputType.h
diff --git a/Source/core/html/forms/BaseButtonInputType.h b/Source/core/html/forms/BaseButtonInputType.h
index 84e268f23f420e1175813bb277e31bb97ed4f0ce..dcf759f37b7f9038887e0187aceeba78fca9789e 100644
--- a/Source/core/html/forms/BaseButtonInputType.h
+++ b/Source/core/html/forms/BaseButtonInputType.h
@@ -41,13 +41,13 @@ protected:
BaseButtonInputType(HTMLInputElement& element) : BaseClickableWithKeyInputType(element) { }
private:
- virtual void createShadowSubtree() OVERRIDE;
- virtual void valueAttributeChanged() OVERRIDE;
- virtual bool shouldSaveAndRestoreFormControlState() const OVERRIDE;
- virtual bool appendFormData(FormDataList&, bool) const OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
- virtual bool storesValueSeparateFromAttribute() OVERRIDE;
- virtual void setValue(const String&, bool, TextFieldEventBehavior) OVERRIDE;
+ virtual void createShadowSubtree() override;
+ virtual void valueAttributeChanged() override;
+ virtual bool shouldSaveAndRestoreFormControlState() const override;
+ virtual bool appendFormData(FormDataList&, bool) const override;
+ virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual bool storesValueSeparateFromAttribute() override;
+ virtual void setValue(const String&, bool, TextFieldEventBehavior) override;
};
} // namespace blink
« no previous file with comments | « Source/core/html/canvas/WebGLVertexArrayObjectOES.h ('k') | Source/core/html/forms/BaseCheckableInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698