summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h b/chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h
index 8c917a0b616..c2743688571 100644
--- a/chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h
+++ b/chromium/third_party/WebKit/Source/core/html/forms/BaseTextInputType.h
@@ -42,9 +42,9 @@ protected:
BaseTextInputType(HTMLInputElement& element) : TextFieldInputType(element) { }
private:
- virtual bool isTextType() const OVERRIDE;
- virtual bool patternMismatch(const String&) const OVERRIDE;
- virtual bool supportsPlaceholder() const OVERRIDE;
+ virtual bool isTextType() const OVERRIDE FINAL;
+ virtual bool patternMismatch(const String&) const OVERRIDE FINAL;
+ virtual bool supportsPlaceholder() const OVERRIDE FINAL;
virtual bool supportsSelectionAPI() const OVERRIDE;
};