| Index: content/renderer/media/video_capture_message_filter.cc
|
| diff --git a/content/renderer/media/video_capture_message_filter.cc b/content/renderer/media/video_capture_message_filter.cc
|
| index 9fd39143f53b4c2a5f6902d06c132ca85efbfda7..61385d507d606b900daa28076e9c06e3e60ea4c1 100644
|
| --- a/content/renderer/media/video_capture_message_filter.cc
|
| +++ b/content/renderer/media/video_capture_message_filter.cc
|
| @@ -113,7 +113,8 @@ void VideoCaptureMessageFilter::OnBufferCreated(
|
| // Send the buffer back to Host in case it's waiting for all buffers
|
| // to be returned.
|
| base::SharedMemory::CloseHandle(handle);
|
| - Send(new VideoCaptureHostMsg_BufferReady(device_id, buffer_id, 0));
|
| + Send(new VideoCaptureHostMsg_BufferReady(
|
| + device_id, buffer_id, std::vector<uint32>()));
|
| return;
|
| }
|
|
|
| @@ -132,7 +133,8 @@ void VideoCaptureMessageFilter::OnBufferReceived(
|
|
|
| // Send the buffer back to Host in case it's waiting for all buffers
|
| // to be returned.
|
| - Send(new VideoCaptureHostMsg_BufferReady(device_id, buffer_id, 0));
|
| + Send(new VideoCaptureHostMsg_BufferReady(
|
| + device_id, buffer_id, std::vector<uint32>()));
|
| return;
|
| }
|
|
|
| @@ -153,7 +155,8 @@ void VideoCaptureMessageFilter::OnMailboxBufferReceived(
|
|
|
| // Send the buffer back to Host in case it's waiting for all buffers
|
| // to be returned.
|
| - Send(new VideoCaptureHostMsg_BufferReady(device_id, buffer_id, 0));
|
| + Send(new VideoCaptureHostMsg_BufferReady(
|
| + device_id, buffer_id, std::vector<uint32>()));
|
| return;
|
| }
|
|
|
|
|