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

Unified Diff: content/browser/renderer_host/media/video_capture_device_client_unittest.cc

Issue 2045813003: Decouple capture timestamp and reference time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 4 years, 6 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/browser/renderer_host/media/video_capture_device_client_unittest.cc
diff --git a/content/browser/renderer_host/media/video_capture_device_client_unittest.cc b/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
index b59470dd128e991aead9060eab66ef608cc805db..c944647d6b99889ff76fd991ecf1f7c03eabb6ab 100644
--- a/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
@@ -45,8 +45,7 @@ class MockVideoCaptureController : public VideoCaptureController {
void DoIncomingCapturedVideoFrameOnIOThread(
std::unique_ptr<media::VideoCaptureDevice::Client::Buffer> buffer,
- const scoped_refptr<media::VideoFrame>& frame,
- const base::TimeTicks& timestamp) override {
+ const scoped_refptr<media::VideoFrame>& frame) override {
MockDoIncomingCapturedVideoFrameOnIOThread(frame->coded_size());
}
};

Powered by Google App Engine
This is Rietveld 408576698