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

Unified Diff: ash/display/resolution_notification_controller.cc

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Workaround Created 5 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
Index: ash/display/resolution_notification_controller.cc
diff --git a/ash/display/resolution_notification_controller.cc b/ash/display/resolution_notification_controller.cc
index 82de8e0346c6ee78e1cd6b0f5674ef0e15d70c07..f615a94553d2db791e146bff8b2dd99109a24a6f 100644
--- a/ash/display/resolution_notification_controller.cc
+++ b/ash/display/resolution_notification_controller.cc
@@ -36,14 +36,14 @@ class ResolutionChangeNotificationDelegate
bool has_timeout);
protected:
- virtual ~ResolutionChangeNotificationDelegate();
+ ~ResolutionChangeNotificationDelegate() override;
private:
// message_center::NotificationDelegate overrides:
- virtual void Close(bool by_user) override;
- virtual void Click() override;
- virtual bool HasClickedListener() override;
- virtual void ButtonClick(int button_index) override;
+ void Close(bool by_user) override;
+ void Click() override;
+ bool HasClickedListener() override;
+ void ButtonClick(int button_index) override;
ResolutionNotificationController* controller_;
bool has_timeout_;
« no previous file with comments | « ash/display/resolution_notification_controller.h ('k') | ash/display/resolution_notification_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698