| Index: content/browser/renderer_host/media/video_capture_host.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_host.cc b/content/browser/renderer_host/media/video_capture_host.cc
|
| index 1b2757f0bdc651a7133590459af1ac643e97af4e..225d65887a7550c64b11d076bfd45ec4dbff53ee 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host.cc
|
| @@ -71,12 +71,14 @@ void VideoCaptureHost::OnBufferCreated2(
|
| VideoCaptureControllerID controller_id,
|
| const std::vector<gfx::GpuMemoryBufferHandle>& handles,
|
| const gfx::Size& size,
|
| + media::VideoPixelFormat format,
|
| int buffer_id) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| if (entries_.find(controller_id) == entries_.end())
|
| return;
|
|
|
| - Send(new VideoCaptureMsg_NewBuffer2(controller_id, handles, size, buffer_id));
|
| + Send(new VideoCaptureMsg_NewBuffer2(controller_id, handles, size, format,
|
| + buffer_id));
|
| }
|
|
|
| void VideoCaptureHost::OnBufferDestroyed(VideoCaptureControllerID controller_id,
|
|
|