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

Unified Diff: ash/display/resolution_notification_controller.h

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.h
diff --git a/ash/display/resolution_notification_controller.h b/ash/display/resolution_notification_controller.h
index b59035e3f6475a74cca23e935ac3daa8ce5ae242..23a1f698a65d40c33bab89a0d72d8e0e570f7557 100644
--- a/ash/display/resolution_notification_controller.h
+++ b/ash/display/resolution_notification_controller.h
@@ -33,7 +33,7 @@ class ASH_EXPORT ResolutionNotificationController
public DisplayController::Observer {
public:
ResolutionNotificationController();
- virtual ~ResolutionNotificationController();
+ ~ResolutionNotificationController() override;
// Prepare a resolution change notification for |display_id| from
// |old_resolution| to |new_resolution|, which offers a button to revert the
@@ -86,13 +86,13 @@ class ASH_EXPORT ResolutionNotificationController
void OnTimerTick();
// gfx::DisplayObserver overrides:
- virtual void OnDisplayAdded(const gfx::Display& new_display) override;
- virtual void OnDisplayRemoved(const gfx::Display& old_display) override;
- virtual void OnDisplayMetricsChanged(const gfx::Display& display,
- uint32_t metrics) override;
+ void OnDisplayAdded(const gfx::Display& new_display) override;
+ void OnDisplayRemoved(const gfx::Display& old_display) override;
+ void OnDisplayMetricsChanged(const gfx::Display& display,
+ uint32_t metrics) override;
// DisplayController::Observer overrides:
- virtual void OnDisplayConfigurationChanged() override;
+ void OnDisplayConfigurationChanged() override;
static void SuppressTimerForTest();
« no previous file with comments | « ash/display/projecting_observer_chromeos_unittest.cc ('k') | ash/display/resolution_notification_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698