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

Unified Diff: Source/core/html/forms/PasswordInputType.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/NumberInputType.h ('k') | Source/core/html/forms/RadioInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/PasswordInputType.h
diff --git a/Source/core/html/forms/PasswordInputType.h b/Source/core/html/forms/PasswordInputType.h
index 3c6c1f8612a1e0f1b5bc3b6b9024f682b6fcc8ce..53ea5acb9e0ea1012eb1fe28443b1445fe33f51d 100644
--- a/Source/core/html/forms/PasswordInputType.h
+++ b/Source/core/html/forms/PasswordInputType.h
@@ -35,21 +35,21 @@
namespace blink {
-class PasswordInputType FINAL : public BaseTextInputType {
+class PasswordInputType final : public BaseTextInputType {
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
private:
PasswordInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
- virtual void countUsage() OVERRIDE;
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual bool shouldSaveAndRestoreFormControlState() const OVERRIDE;
- virtual FormControlState saveFormControlState() const OVERRIDE;
- virtual void restoreFormControlState(const FormControlState&) OVERRIDE;
- virtual bool shouldRespectListAttribute() OVERRIDE;
- virtual bool shouldRespectSpeechAttribute() OVERRIDE;
- virtual void enableSecureTextInput() OVERRIDE;
- virtual void disableSecureTextInput() OVERRIDE;
+ virtual void countUsage() override;
+ virtual const AtomicString& formControlType() const override;
+ virtual bool shouldSaveAndRestoreFormControlState() const override;
+ virtual FormControlState saveFormControlState() const override;
+ virtual void restoreFormControlState(const FormControlState&) override;
+ virtual bool shouldRespectListAttribute() override;
+ virtual bool shouldRespectSpeechAttribute() override;
+ virtual void enableSecureTextInput() override;
+ virtual void disableSecureTextInput() override;
};
} // namespace blink
« no previous file with comments | « Source/core/html/forms/NumberInputType.h ('k') | Source/core/html/forms/RadioInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698