Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2665)

Unified Diff: content/renderer/media/video_capture_impl_unittest.cc

Issue 287313002: Pass a TimeTicks along video capture pipeline to represent capture time (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged and land Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/video_capture_impl_unittest.cc
diff --git a/content/renderer/media/video_capture_impl_unittest.cc b/content/renderer/media/video_capture_impl_unittest.cc
index 37dc0141f8324e7ccbb1f45d315208893fa12581..19e481d92aaf696f0c87646accc2dc9fbacca2ec 100644
--- a/content/renderer/media/video_capture_impl_unittest.cc
+++ b/content/renderer/media/video_capture_impl_unittest.cc
@@ -129,9 +129,10 @@ class VideoCaptureImplTest : public ::testing::Test {
}
protected:
- MOCK_METHOD2(OnFrameReady,
+ MOCK_METHOD3(OnFrameReady,
void(const scoped_refptr<media::VideoFrame>&,
- const media::VideoCaptureFormat&));
+ const media::VideoCaptureFormat&,
+ const base::TimeTicks&));
MOCK_METHOD1(OnStateUpdate, void(VideoCaptureState));
MOCK_METHOD1(OnDeviceFormatsInUse,
void(const media::VideoCaptureFormats&));
« no previous file with comments | « content/renderer/media/video_capture_impl_manager_unittest.cc ('k') | content/renderer/media/video_frame_deliverer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698