| Index: content/browser/renderer_host/media/media_stream_manager.h
|
| diff --git a/content/browser/renderer_host/media/media_stream_manager.h b/content/browser/renderer_host/media/media_stream_manager.h
|
| index e23c73ba901fe9d774bda412d17594c680124f3f..d5dbf9fed57acdf4b3c818d3aabd96ddeb2df298 100644
|
| --- a/content/browser/renderer_host/media/media_stream_manager.h
|
| +++ b/content/browser/renderer_host/media/media_stream_manager.h
|
| @@ -166,17 +166,17 @@ class CONTENT_EXPORT MediaStreamManager
|
|
|
| // Implements MediaStreamProviderListener.
|
| virtual void Opened(MediaStreamType stream_type,
|
| - int capture_session_id) OVERRIDE;
|
| + int capture_session_id) override;
|
| virtual void Closed(MediaStreamType stream_type,
|
| - int capture_session_id) OVERRIDE;
|
| + int capture_session_id) override;
|
| virtual void DevicesEnumerated(MediaStreamType stream_type,
|
| - const StreamDeviceInfoArray& devices) OVERRIDE;
|
| + const StreamDeviceInfoArray& devices) override;
|
| virtual void Aborted(MediaStreamType stream_type,
|
| - int capture_session_id) OVERRIDE;
|
| + int capture_session_id) override;
|
|
|
| // Implements base::SystemMonitor::DevicesChangedObserver.
|
| virtual void OnDevicesChanged(
|
| - base::SystemMonitor::DeviceType device_type) OVERRIDE;
|
| + base::SystemMonitor::DeviceType device_type) override;
|
|
|
| // Called by the tests to specify a fake UI that should be used for next
|
| // generated stream (or when using --use-fake-ui-for-media-stream).
|
| @@ -195,7 +195,7 @@ class CONTENT_EXPORT MediaStreamManager
|
| // But for some tests which use TestBrowserThreadBundle, we need to call
|
| // WillDestroyCurrentMessageLoop explicitly because the notification happens
|
| // too late. (see http://crbug.com/247525#c14).
|
| - virtual void WillDestroyCurrentMessageLoop() OVERRIDE;
|
| + virtual void WillDestroyCurrentMessageLoop() override;
|
|
|
| // Sends log messages to the render process hosts whose corresponding render
|
| // processes are making device requests, to be used by the
|
| @@ -208,8 +208,8 @@ class CONTENT_EXPORT MediaStreamManager
|
| static void SendMessageToNativeLog(const std::string& message);
|
|
|
| // base::PowerObserver overrides.
|
| - virtual void OnSuspend() OVERRIDE;
|
| - virtual void OnResume() OVERRIDE;
|
| + virtual void OnSuspend() override;
|
| + virtual void OnResume() override;
|
|
|
| protected:
|
| // Used for testing.
|
|
|