| Index: media/video/capture/video_capture_device_unittest.cc
|
| diff --git a/media/video/capture/video_capture_device_unittest.cc b/media/video/capture/video_capture_device_unittest.cc
|
| index 0abd90e25075b1278ddfd0112f6cea764ca3f023..5b13464c15ae9852a9c608f84bdea753d7c62de4 100644
|
| --- a/media/video/capture/video_capture_device_unittest.cc
|
| +++ b/media/video/capture/video_capture_device_unittest.cc
|
| @@ -72,7 +72,7 @@ class MockClient : public media::VideoCaptureDevice::Client {
|
| explicit MockClient(base::Callback<void(const VideoCaptureFormat&)> frame_cb)
|
| : main_thread_(base::MessageLoopProxy::current()), frame_cb_(frame_cb) {}
|
|
|
| - virtual void OnError(const std::string& error_message) OVERRIDE {
|
| + virtual void OnError(const std::string& error_message) override {
|
| OnErr();
|
| }
|
|
|
| @@ -80,7 +80,7 @@ class MockClient : public media::VideoCaptureDevice::Client {
|
| int length,
|
| const VideoCaptureFormat& format,
|
| int rotation,
|
| - base::TimeTicks timestamp) OVERRIDE {
|
| + base::TimeTicks timestamp) override {
|
| main_thread_->PostTask(FROM_HERE, base::Bind(frame_cb_, format));
|
| }
|
|
|
| @@ -88,7 +88,7 @@ class MockClient : public media::VideoCaptureDevice::Client {
|
| const scoped_refptr<Buffer>& buffer,
|
| const media::VideoCaptureFormat& buffer_format,
|
| const scoped_refptr<media::VideoFrame>& frame,
|
| - base::TimeTicks timestamp) OVERRIDE {
|
| + base::TimeTicks timestamp) override {
|
| NOTREACHED();
|
| }
|
|
|
|
|