| 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 039d9815ab69761b1438a4b96f707265c50adc46..292ecb72fa034879c868b05b87535fe8b8e3f10d 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host.cc
|
| @@ -69,7 +69,7 @@ void VideoCaptureHost::OnBufferDestroyed(
|
| void VideoCaptureHost::OnBufferReady(
|
| const VideoCaptureControllerID& controller_id,
|
| int buffer_id,
|
| - base::Time timestamp,
|
| + base::TimeTicks timestamp,
|
| const media::VideoCaptureFormat& frame_format) {
|
| BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
| @@ -112,7 +112,8 @@ void VideoCaptureHost::DoSendFreeBufferOnIOThread(
|
|
|
| void VideoCaptureHost::DoSendFilledBufferOnIOThread(
|
| const VideoCaptureControllerID& controller_id,
|
| - int buffer_id, base::Time timestamp,
|
| + int buffer_id,
|
| + base::TimeTicks timestamp,
|
| const media::VideoCaptureFormat& format) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
|
|
|