| 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 c794195683aa3197f750c599f9614b6a42609498..dc0bdfe80438b41e2b5d66c85de0741fae256dc2 100644
|
| --- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
|
| @@ -49,18 +49,15 @@ class MockFrameObserver : public VideoCaptureControllerEventHandler {
|
|
|
| virtual void OnBufferCreated(const VideoCaptureControllerID& id,
|
| base::SharedMemoryHandle handle,
|
| - int length, int buffer_id) OVERRIDE {};
|
| - virtual void OnBufferReady(const VideoCaptureControllerID& id,
|
| - int buffer_id,
|
| - base::Time timestamp) OVERRIDE {};
|
| - virtual void OnFrameInfo(
|
| + int length, int buffer_id) OVERRIDE {}
|
| + virtual void OnBufferDestroyed(const VideoCaptureControllerID& id,
|
| + int buffer_id) OVERRIDE {}
|
| + virtual void OnBufferReady(
|
| const VideoCaptureControllerID& id,
|
| - const media::VideoCaptureCapability& format) OVERRIDE {};
|
| - virtual void OnFrameInfoChanged(const VideoCaptureControllerID& id,
|
| - int width,
|
| - int height,
|
| - int frame_rate) OVERRIDE {};
|
| - virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE {};
|
| + int buffer_id,
|
| + base::Time timestamp,
|
| + const media::VideoCaptureFormat& format) OVERRIDE {}
|
| + virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE {}
|
|
|
| void OnGotControllerCallback(VideoCaptureControllerID) {}
|
| };
|
|
|