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 |