| Index: content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_manager_unittest.cc b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| index f27f5a5ef254eef1654690d113c6072553296c6f..f033effcb77003144b96f6c01c312a83dc82f164 100644
|
| --- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| @@ -48,20 +48,20 @@ class MockFrameObserver : public VideoCaptureControllerEventHandler {
|
|
|
| virtual void OnBufferCreated(const VideoCaptureControllerID& id,
|
| base::SharedMemoryHandle handle,
|
| - int length, int buffer_id) OVERRIDE {}
|
| + int length, int buffer_id) override {}
|
| virtual void OnBufferDestroyed(const VideoCaptureControllerID& id,
|
| - int buffer_id) OVERRIDE {}
|
| + int buffer_id) override {}
|
| virtual void OnBufferReady(const VideoCaptureControllerID& id,
|
| int buffer_id,
|
| const media::VideoCaptureFormat& format,
|
| const gfx::Rect& visible_rect,
|
| - base::TimeTicks timestamp) OVERRIDE {}
|
| + base::TimeTicks timestamp) override {}
|
| virtual void OnMailboxBufferReady(const VideoCaptureControllerID& id,
|
| int buffer_id,
|
| const gpu::MailboxHolder& mailbox_holder,
|
| const media::VideoCaptureFormat& format,
|
| - base::TimeTicks timestamp) OVERRIDE {}
|
| - virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE {}
|
| + base::TimeTicks timestamp) override {}
|
| + virtual void OnEnded(const VideoCaptureControllerID& id) override {}
|
|
|
| void OnGotControllerCallback(VideoCaptureControllerID) {}
|
| };
|
| @@ -73,7 +73,7 @@ class VideoCaptureManagerTest : public testing::Test {
|
| virtual ~VideoCaptureManagerTest() {}
|
|
|
| protected:
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| listener_.reset(new MockMediaStreamProviderListener());
|
| message_loop_.reset(new base::MessageLoopForIO);
|
| io_thread_.reset(new BrowserThreadImpl(BrowserThread::IO,
|
| @@ -89,7 +89,7 @@ class VideoCaptureManagerTest : public testing::Test {
|
| frame_observer_.reset(new MockFrameObserver());
|
| }
|
|
|
| - virtual void TearDown() OVERRIDE {}
|
| + virtual void TearDown() override {}
|
|
|
| void OnGotControllerCallback(
|
| VideoCaptureControllerID id,
|
|
|