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

Unified Diff: Source/core/html/forms/BaseClickableWithKeyInputType.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
Index: Source/core/html/forms/BaseClickableWithKeyInputType.h
diff --git a/Source/core/html/forms/BaseClickableWithKeyInputType.h b/Source/core/html/forms/BaseClickableWithKeyInputType.h
index 2798c96eefe756a534384beaca0926872a35ad76..0ca728071ace58de2d85b461fa5f6da127514014 100644
--- a/Source/core/html/forms/BaseClickableWithKeyInputType.h
+++ b/Source/core/html/forms/BaseClickableWithKeyInputType.h
@@ -47,10 +47,10 @@ protected:
BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { }
private:
- virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
- virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE;
- virtual void handleKeyupEvent(KeyboardEvent*) OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
+ virtual void handleKeydownEvent(KeyboardEvent*) override;
+ virtual void handleKeypressEvent(KeyboardEvent*) override;
+ virtual void handleKeyupEvent(KeyboardEvent*) override;
+ virtual void accessKeyAction(bool sendMouseEvents) override;
};
} // namespace blink
« no previous file with comments | « Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h ('k') | Source/core/html/forms/BaseDateAndTimeInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698