| Index: content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| index 58a07e6ebf178b610dd78483d1a0f1ab6167c0ab..84ff401fa4c583f9bc242620e36d7ed5d697436a 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| @@ -146,7 +146,7 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| void ReturnReceivedDibs(int device_id) {
|
| int handle = GetReceivedDib();
|
| while (handle) {
|
| - this->OnReceiveEmptyBuffer(device_id, handle, 0);
|
| + this->OnReceiveEmptyBuffer(device_id, handle, std::vector<uint32>());
|
| handle = GetReceivedDib();
|
| }
|
| }
|
| @@ -234,7 +234,8 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
|
|
| OnBufferFilled(device_id, buffer_id, frame_format, timestamp);
|
| if (return_buffers_) {
|
| - VideoCaptureHost::OnReceiveEmptyBuffer(device_id, buffer_id, 0);
|
| + VideoCaptureHost::OnReceiveEmptyBuffer(
|
| + device_id, buffer_id, std::vector<uint32>());
|
| }
|
| }
|
|
|
| @@ -247,7 +248,7 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| device_id, buffer_id, mailbox_holder, format, timestamp);
|
| if (return_buffers_) {
|
| VideoCaptureHost::OnReceiveEmptyBuffer(
|
| - device_id, buffer_id, mailbox_holder.sync_point);
|
| + device_id, buffer_id, std::vector<uint32>());
|
| }
|
| }
|
|
|
|
|