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