| Index: content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| index 551b0c2ecfe6a17edef38dda9f40be5e0112d7d3..01545db062751e0924f4c121213b55debf73cc0f 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| @@ -119,7 +119,9 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| MOCK_METHOD2(OnBufferFreed,
|
| void(int device_id, int buffer_id));
|
| MOCK_METHOD4(OnBufferFilled,
|
| - void(int device_id, int buffer_id, base::Time timestamp,
|
| + void(int device_id,
|
| + int buffer_id,
|
| + base::TimeTicks timestamp,
|
| const media::VideoCaptureFormat& format));
|
| MOCK_METHOD2(OnStateChanged, void(int device_id, VideoCaptureState state));
|
|
|
| @@ -203,7 +205,7 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
|
|
| void OnBufferFilledDispatch(int device_id,
|
| int buffer_id,
|
| - base::Time timestamp,
|
| + base::TimeTicks timestamp,
|
| const media::VideoCaptureFormat& frame_format) {
|
| base::SharedMemory* dib = filled_dib_[buffer_id];
|
| ASSERT_TRUE(dib != NULL);
|
|
|