| 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 6a765e1399a119f1b9927d410d3286e2c4729ae8..d23a5e2db2430ff39306201d75348fd77fadbe37 100644
|
| --- a/media/video/capture/video_capture_device_unittest.cc
|
| +++ b/media/video/capture/video_capture_device_unittest.cc
|
| @@ -75,18 +75,17 @@ class MockClient : public media::VideoCaptureDevice::Client {
|
|
|
| virtual void OnIncomingCapturedFrame(const uint8* data,
|
| int length,
|
| - base::TimeTicks timestamp,
|
| + const VideoCaptureFormat& format,
|
| int rotation,
|
| - const VideoCaptureFormat& format)
|
| - OVERRIDE {
|
| + base::TimeTicks timestamp) OVERRIDE {
|
| main_thread_->PostTask(FROM_HERE, base::Bind(frame_cb_, format));
|
| }
|
|
|
| - virtual void OnIncomingCapturedBuffer(const scoped_refptr<Buffer>& buffer,
|
| - media::VideoFrame::Format format,
|
| - const gfx::Size& dimensions,
|
| - base::TimeTicks timestamp,
|
| - int frame_rate) OVERRIDE {
|
| + virtual void OnIncomingCapturedVideoFrame(
|
| + const scoped_refptr<Buffer>& buffer,
|
| + const media::VideoCaptureFormat& buffer_format,
|
| + const scoped_refptr<media::VideoFrame>& frame,
|
| + base::TimeTicks timestamp) OVERRIDE {
|
| NOTREACHED();
|
| }
|
|
|
|
|