Index: content/browser/renderer_host/media/video_capture_host.h |
diff --git a/content/browser/renderer_host/media/video_capture_host.h b/content/browser/renderer_host/media/video_capture_host.h |
index b71aac3715c1d5c1459fc1c227512ac268540954..bd1db0afac3d8b0a0fcd7a26c3d886aae7a4f137 100644 |
--- a/content/browser/renderer_host/media/video_capture_host.h |
+++ b/content/browser/renderer_host/media/video_capture_host.h |
@@ -84,11 +84,10 @@ class CONTENT_EXPORT VideoCaptureHost |
int buffer_id) OVERRIDE; |
virtual void OnBufferDestroyed(const VideoCaptureControllerID& id, |
int buffer_id) OVERRIDE; |
- virtual void OnBufferReady( |
- const VideoCaptureControllerID& id, |
- int buffer_id, |
- base::Time timestamp, |
- const media::VideoCaptureFormat& format) OVERRIDE; |
+ virtual void OnBufferReady(const VideoCaptureControllerID& id, |
+ int buffer_id, |
+ base::TimeTicks timestamp, |
+ const media::VideoCaptureFormat& format) OVERRIDE; |
virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE; |
private: |
@@ -138,7 +137,7 @@ class CONTENT_EXPORT VideoCaptureHost |
void DoSendFilledBufferOnIOThread( |
const VideoCaptureControllerID& controller_id, |
int buffer_id, |
- base::Time timestamp, |
+ base::TimeTicks timestamp, |
const media::VideoCaptureFormat& format); |
// Handle error coming from VideoCaptureDevice. |