| Index: content/renderer/media/video_capture_impl.cc
|
| diff --git a/content/renderer/media/video_capture_impl.cc b/content/renderer/media/video_capture_impl.cc
|
| index 122fc06787ecb954884bb3180269df58752081cd..a9d6240ea1c5ad250666d5d34eccec37f5bdb243 100644
|
| --- a/content/renderer/media/video_capture_impl.cc
|
| +++ b/content/renderer/media/video_capture_impl.cc
|
| @@ -251,7 +251,7 @@ void VideoCaptureImpl::OnBufferReceived(int buffer_id,
|
|
|
| for (ClientInfoMap::iterator it = clients_.begin(); it != clients_.end();
|
| ++it) {
|
| - it->second.deliver_frame_cb.Run(frame, format);
|
| + it->second.deliver_frame_cb.Run(frame, format, timestamp);
|
| }
|
| }
|
|
|
| @@ -289,7 +289,7 @@ void VideoCaptureImpl::OnMailboxBufferReceived(
|
|
|
| for (ClientInfoMap::iterator it = clients_.begin(); it != clients_.end();
|
| ++it) {
|
| - it->second.deliver_frame_cb.Run(frame, format);
|
| + it->second.deliver_frame_cb.Run(frame, format, timestamp);
|
| }
|
| }
|
|
|
|
|