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

Unified Diff: Source/core/html/forms/BaseCheckableInputType.h

Issue 132103002: Update HTML forms classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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 | « no previous file | Source/core/html/forms/BaseTextInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/BaseCheckableInputType.h
diff --git a/Source/core/html/forms/BaseCheckableInputType.h b/Source/core/html/forms/BaseCheckableInputType.h
index fdb2fa006ec15c7d1c30331288720959f5caebe8..1e8a66505be2a5d8ecd99934d8e19383ad68ca70 100644
--- a/Source/core/html/forms/BaseCheckableInputType.h
+++ b/Source/core/html/forms/BaseCheckableInputType.h
@@ -42,16 +42,16 @@ protected:
virtual void handleKeydownEvent(KeyboardEvent*);
private:
- virtual FormControlState saveFormControlState() const OVERRIDE;
- virtual void restoreFormControlState(const FormControlState&) OVERRIDE;
- virtual bool appendFormData(FormDataList&, bool) const OVERRIDE;
- virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE;
- virtual bool canSetStringValue() const OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
- virtual String fallbackValue() const OVERRIDE;
- virtual bool storesValueSeparateFromAttribute() OVERRIDE;
- virtual void setValue(const String&, bool, TextFieldEventBehavior) OVERRIDE;
- virtual bool isCheckable() OVERRIDE;
+ virtual FormControlState saveFormControlState() const OVERRIDE FINAL;
+ virtual void restoreFormControlState(const FormControlState&) OVERRIDE FINAL;
+ virtual bool appendFormData(FormDataList&, bool) const OVERRIDE FINAL;
+ virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE FINAL;
+ virtual bool canSetStringValue() const OVERRIDE FINAL;
+ virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE FINAL;
+ virtual String fallbackValue() const OVERRIDE FINAL;
+ virtual bool storesValueSeparateFromAttribute() OVERRIDE FINAL;
+ virtual void setValue(const String&, bool, TextFieldEventBehavior) OVERRIDE FINAL;
+ virtual bool isCheckable() OVERRIDE FINAL;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/html/forms/BaseTextInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698