| Index: media/video/capture/fake_video_capture_device_unittest.cc
|
| diff --git a/media/video/capture/fake_video_capture_device_unittest.cc b/media/video/capture/fake_video_capture_device_unittest.cc
|
| index 02b075b5b397b8c1d5505264cac8a6efbf448a51..9942220b365434db851c0efd1d2570ee1575162b 100644
|
| --- a/media/video/capture/fake_video_capture_device_unittest.cc
|
| +++ b/media/video/capture/fake_video_capture_device_unittest.cc
|
| @@ -29,7 +29,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();
|
| }
|
|
|
| @@ -37,7 +37,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));
|
| }
|
|
|
| @@ -45,7 +45,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();
|
| }
|
|
|
|
|