| 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 f41984bd5a073c21e45941928f46539809bdf81c..126186cb59cdf354a054b76bf58b9a575dd8b4eb 100644
|
| --- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| @@ -51,16 +51,20 @@ class MockFrameObserver : public VideoCaptureControllerEventHandler {
|
| int length, int buffer_id) override {}
|
| virtual void OnBufferDestroyed(const VideoCaptureControllerID& id,
|
| 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 {}
|
| - virtual void OnMailboxBufferReady(const VideoCaptureControllerID& id,
|
| - int buffer_id,
|
| - const gpu::MailboxHolder& mailbox_holder,
|
| - const media::VideoCaptureFormat& format,
|
| - base::TimeTicks timestamp) override {}
|
| + virtual void OnBufferReady(
|
| + const VideoCaptureControllerID& id,
|
| + int buffer_id,
|
| + const gfx::Size& coded_size,
|
| + const gfx::Rect& visible_rect,
|
| + base::TimeTicks timestamp,
|
| + scoped_ptr<base::DictionaryValue> metadata) override {}
|
| + virtual void OnMailboxBufferReady(
|
| + const VideoCaptureControllerID& id,
|
| + int buffer_id,
|
| + const gpu::MailboxHolder& mailbox_holder,
|
| + const gfx::Size& packed_frame_size,
|
| + base::TimeTicks timestamp,
|
| + scoped_ptr<base::DictionaryValue> metadata) override {}
|
| virtual void OnEnded(const VideoCaptureControllerID& id) override {}
|
|
|
| void OnGotControllerCallback(VideoCaptureControllerID) {}
|
|
|