| Index: content/browser/media/capture/web_contents_video_capture_device_unittest.cc
|
| diff --git a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
|
| index e7ae151a449bb4062098787bca290830ddb66818..1f1fd4ec1f297ccf0ba7abbcfd32a898659d5a12 100644
|
| --- a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
|
| +++ b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
|
| @@ -349,13 +349,12 @@
|
| MOCK_METHOD0(DoOnIncomingCapturedBuffer, void(void));
|
|
|
| scoped_ptr<media::VideoCaptureDevice::Client::Buffer> ReserveOutputBuffer(
|
| - const gfx::Size& dimensions,
|
| media::VideoPixelFormat format,
|
| - media::VideoPixelStorage storage) override {
|
| + const gfx::Size& dimensions) override {
|
| CHECK_EQ(format, media::PIXEL_FORMAT_I420);
|
| int buffer_id_to_drop = VideoCaptureBufferPool::kInvalidId; // Ignored.
|
| - const int buffer_id = buffer_pool_->ReserveForProducer(
|
| - format, storage, dimensions, &buffer_id_to_drop);
|
| + int buffer_id = buffer_pool_->ReserveForProducer(format, dimensions,
|
| + &buffer_id_to_drop);
|
| if (buffer_id == VideoCaptureBufferPool::kInvalidId)
|
| return NULL;
|
|
|
|
|