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

Unified Diff: Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.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/BaseChooserOnlyDateAndTimeInputType.h
diff --git a/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h b/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h
index 18c6cd1e21b2c9fa1ccab0501dc4e8888ae43189..ee3bb0e59ee31e5c992b4c6d0bf46c29b255c51b 100644
--- a/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h
+++ b/Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h
@@ -43,21 +43,21 @@ private:
void closeDateTimeChooser();
// InputType functions:
- virtual void createShadowSubtree() OVERRIDE;
- virtual void closePopupView() OVERRIDE;
- virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) OVERRIDE;
- virtual void handleDOMActivateEvent(Event*) OVERRIDE;
- virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
- virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE;
- virtual void handleKeyupEvent(KeyboardEvent*) OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
- virtual void updateView() OVERRIDE;
+ virtual void createShadowSubtree() override;
+ virtual void closePopupView() override;
+ virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
+ virtual void handleDOMActivateEvent(Event*) override;
+ virtual void handleKeydownEvent(KeyboardEvent*) override;
+ virtual void handleKeypressEvent(KeyboardEvent*) override;
+ virtual void handleKeyupEvent(KeyboardEvent*) override;
+ virtual void accessKeyAction(bool sendMouseEvents) override;
+ virtual void updateView() override;
// DateTimeChooserClient functions:
- virtual Element& ownerElement() const OVERRIDE;
- virtual void didChooseValue(const String&) OVERRIDE;
- virtual void didChooseValue(double) OVERRIDE;
- virtual void didEndChooser() OVERRIDE;
+ virtual Element& ownerElement() const override;
+ virtual void didChooseValue(const String&) override;
+ virtual void didChooseValue(double) override;
+ virtual void didEndChooser() override;
RefPtr<DateTimeChooser> m_dateTimeChooser;
};
« no previous file with comments | « Source/core/html/forms/BaseCheckableInputType.h ('k') | Source/core/html/forms/BaseClickableWithKeyInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698