| 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 610be86f7ecb702a92159344bdfc093543b00881..0002929a9fc9b199c0f3d2203bd9c80ea3fab76a 100644
|
| --- a/media/video/capture/video_capture_device_unittest.cc
|
| +++ b/media/video/capture/video_capture_device_unittest.cc
|
| @@ -99,9 +99,12 @@ class MockClient : public VideoCaptureDevice::Client {
|
| }
|
|
|
| // Trampoline methods to workaround GMOCK problems with scoped_ptr<>.
|
| - scoped_ptr<Buffer> ReserveOutputBuffer(VideoPixelFormat format,
|
| - const gfx::Size& dimensions) override {
|
| + scoped_ptr<Buffer> ReserveOutputBuffer(
|
| + const gfx::Size& dimensions,
|
| + media::VideoPixelFormat format,
|
| + media::VideoPixelStorage storage) override {
|
| DoReserveOutputBuffer();
|
| + NOTREACHED() << "This should never be called";
|
| return scoped_ptr<Buffer>();
|
| }
|
| void OnIncomingCapturedBuffer(scoped_ptr<Buffer> buffer,
|
|
|