Index: Source/core/html/forms/TelephoneInputType.h |
diff --git a/Source/core/html/forms/TelephoneInputType.h b/Source/core/html/forms/TelephoneInputType.h |
index 8619d6d02c301c753302f1e8d698524491707474..0c1cb1a4bf3a7846e7809e2127e6724a6a4d0d95 100644 |
--- a/Source/core/html/forms/TelephoneInputType.h |
+++ b/Source/core/html/forms/TelephoneInputType.h |
@@ -35,15 +35,15 @@ |
namespace blink { |
-class TelephoneInputType FINAL : public BaseTextInputType { |
+class TelephoneInputType final : public BaseTextInputType { |
public: |
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); |
private: |
TelephoneInputType(HTMLInputElement& element) : BaseTextInputType(element) { } |
- virtual void countUsage() OVERRIDE; |
- virtual const AtomicString& formControlType() const OVERRIDE; |
- virtual bool shouldRespectSpeechAttribute() OVERRIDE; |
+ virtual void countUsage() override; |
+ virtual const AtomicString& formControlType() const override; |
+ virtual bool shouldRespectSpeechAttribute() override; |
}; |
} // namespace blink |