| 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 2976a4c6000bd13a37f3c706e3c5aa2358c70a3d..7157407fff2cbb9ddbc8671085d2f233c0eff035 100644
|
| --- a/content/renderer/media/video_capture_message_filter.cc
|
| +++ b/content/renderer/media/video_capture_message_filter.cc
|
| @@ -125,6 +125,7 @@ void VideoCaptureMessageFilter::OnBufferReceived(
|
| int device_id,
|
| int buffer_id,
|
| const media::VideoCaptureFormat& format,
|
| + const gfx::Rect& visible_rect,
|
| base::TimeTicks timestamp) {
|
| Delegate* delegate = find_delegate(device_id);
|
| if (!delegate) {
|
| @@ -137,7 +138,7 @@ void VideoCaptureMessageFilter::OnBufferReceived(
|
| return;
|
| }
|
|
|
| - delegate->OnBufferReceived(buffer_id, format, timestamp);
|
| + delegate->OnBufferReceived(buffer_id, format, visible_rect, timestamp);
|
| }
|
|
|
| void VideoCaptureMessageFilter::OnMailboxBufferReceived(
|
|
|