Chromium Code Reviews| Index: media/video/capture/fake_video_capture_device.h |
| diff --git a/media/video/capture/fake_video_capture_device.h b/media/video/capture/fake_video_capture_device.h |
| index f4a19f9edb9c2c6611aa8d66cc15094f905ead7f..a2ade64fa573d47a64ec8d4da621ede4181c741c 100644 |
| --- a/media/video/capture/fake_video_capture_device.h |
| +++ b/media/video/capture/fake_video_capture_device.h |
| @@ -41,9 +41,13 @@ class MEDIA_EXPORT FakeVideoCaptureDevice : public VideoCaptureDevice { |
| private: |
| static const int kFakeCapturePeriodMs = 50; |
| - void CaptureUsingOwnBuffers(); |
| - void CaptureUsingClientBuffers(VideoPixelFormat pixel_format); |
| - void BeepAndScheduleNextCapture(const base::Closure& next_capture); |
| + void CaptureUsingOwnBuffers(const base::TimeTicks& expected_execution_time); |
|
mcasas
2015/06/09 19:41:16
Please read [1] l.24-26, IOW in this case don't pa
magjed_chromium
2015/06/10 11:19:55
Done.
|
| + void CaptureUsingClientBuffers( |
| + VideoPixelFormat pixel_format, |
| + const base::TimeTicks& expected_execution_time); |
| + void BeepAndScheduleNextCapture( |
| + const base::TimeTicks& expected_execution_time, |
| + const base::Callback<void(const base::TimeTicks&)>& next_capture); |
| // |thread_checker_| is used to check that all methods are called in the |
| // correct thread that owns the object. |