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

Side by Side Diff: ash/display/resolution_notification_controller.h

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ 5 #ifndef ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_
6 #define ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ 6 #define ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/display/display_controller.h" 9 #include "ash/display/display_controller.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // Create a new notification, or update its content if it already exists. 79 // Create a new notification, or update its content if it already exists.
80 // |enable_spoken_feedback| is set to false when the notification is updated 80 // |enable_spoken_feedback| is set to false when the notification is updated
81 // during the countdown so the update isn't necessarily read by the spoken 81 // during the countdown so the update isn't necessarily read by the spoken
82 // feedback. 82 // feedback.
83 void CreateOrUpdateNotification(bool enable_spoken_feedback); 83 void CreateOrUpdateNotification(bool enable_spoken_feedback);
84 84
85 // Called every second for timeout. 85 // Called every second for timeout.
86 void OnTimerTick(); 86 void OnTimerTick();
87 87
88 // gfx::DisplayObserver overrides: 88 // gfx::DisplayObserver overrides:
89 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE; 89 virtual void OnDisplayAdded(const gfx::Display& new_display) override;
90 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE; 90 virtual void OnDisplayRemoved(const gfx::Display& old_display) override;
91 virtual void OnDisplayMetricsChanged(const gfx::Display& display, 91 virtual void OnDisplayMetricsChanged(const gfx::Display& display,
92 uint32_t metrics) OVERRIDE; 92 uint32_t metrics) override;
93 93
94 // DisplayController::Observer overrides: 94 // DisplayController::Observer overrides:
95 virtual void OnDisplayConfigurationChanged() OVERRIDE; 95 virtual void OnDisplayConfigurationChanged() override;
96 96
97 static void SuppressTimerForTest(); 97 static void SuppressTimerForTest();
98 98
99 scoped_ptr<ResolutionChangeInfo> change_info_; 99 scoped_ptr<ResolutionChangeInfo> change_info_;
100 100
101 DISALLOW_COPY_AND_ASSIGN(ResolutionNotificationController); 101 DISALLOW_COPY_AND_ASSIGN(ResolutionNotificationController);
102 }; 102 };
103 103
104 } // namespace ash 104 } // namespace ash
105 105
106 #endif // ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_ 106 #endif // ASH_DISPLAY_RESOLUTION_NOTIFICATION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ash/display/projecting_observer_chromeos.h ('k') | ash/display/resolution_notification_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698