| 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
|
|
|