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

Unified Diff: Source/core/html/forms/HiddenInputType.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
« no previous file with comments | « Source/core/html/forms/FormController.cpp ('k') | Source/core/html/forms/ImageInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/HiddenInputType.h
diff --git a/Source/core/html/forms/HiddenInputType.h b/Source/core/html/forms/HiddenInputType.h
index 8e1018ca6c8fc3bc4795d9651cdfef4ddc634874..b224e706bea32c3eda3a2c0d40079c87a61dd397 100644
--- a/Source/core/html/forms/HiddenInputType.h
+++ b/Source/core/html/forms/HiddenInputType.h
@@ -35,24 +35,24 @@
namespace blink {
-class HiddenInputType FINAL : public InputType {
+class HiddenInputType final : public InputType {
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
private:
HiddenInputType(HTMLInputElement& element) : InputType(element) { }
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual FormControlState saveFormControlState() const OVERRIDE;
- virtual void restoreFormControlState(const FormControlState&) OVERRIDE;
- virtual bool supportsValidation() const OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
- virtual bool rendererIsNeeded() OVERRIDE;
- virtual bool storesValueSeparateFromAttribute() OVERRIDE;
- virtual bool isInteractiveContent() const OVERRIDE { return false; }
- virtual bool shouldRespectHeightAndWidthAttributes() OVERRIDE;
- virtual void setValue(const String&, bool, TextFieldEventBehavior) OVERRIDE;
- virtual bool appendFormData(FormDataList&, bool) const OVERRIDE;
+ virtual const AtomicString& formControlType() const override;
+ virtual FormControlState saveFormControlState() const override;
+ virtual void restoreFormControlState(const FormControlState&) override;
+ virtual bool supportsValidation() const override;
+ virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual void accessKeyAction(bool sendMouseEvents) override;
+ virtual bool rendererIsNeeded() override;
+ virtual bool storesValueSeparateFromAttribute() override;
+ virtual bool isInteractiveContent() const override { return false; }
+ virtual bool shouldRespectHeightAndWidthAttributes() override;
+ virtual void setValue(const String&, bool, TextFieldEventBehavior) override;
+ virtual bool appendFormData(FormDataList&, bool) const override;
};
} // namespace blink
« no previous file with comments | « Source/core/html/forms/FormController.cpp ('k') | Source/core/html/forms/ImageInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698