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

Unified Diff: ash/system/chromeos/power/video_activity_notifier.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/system/chromeos/power/video_activity_notifier.h
diff --git a/ash/system/chromeos/power/video_activity_notifier.h b/ash/system/chromeos/power/video_activity_notifier.h
index 3116160341687a5d723810af0cbc5cc88e678832..204f96fdd459d33ce7bd987b2a8fbd301b520995 100644
--- a/ash/system/chromeos/power/video_activity_notifier.h
+++ b/ash/system/chromeos/power/video_activity_notifier.h
@@ -17,13 +17,13 @@ class VideoActivityNotifier : public VideoDetectorObserver,
public ShellObserver {
public:
explicit VideoActivityNotifier(VideoDetector* detector);
- virtual ~VideoActivityNotifier();
+ ~VideoActivityNotifier() override;
// VideoDetectorObserver implementation.
- virtual void OnVideoDetected(bool is_fullscreen) override;
+ void OnVideoDetected(bool is_fullscreen) override;
// ShellObserver implementation.
- virtual void OnLockStateChanged(bool locked) override;
+ void OnLockStateChanged(bool locked) override;
private:
VideoDetector* detector_; // not owned
« no previous file with comments | « ash/system/chromeos/power/tray_power_unittest.cc ('k') | ash/system/chromeos/rotation/tray_rotation_lock_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698