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

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

Issue 1304393004: Change VideoCaptureDeliverFrameCB's signature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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_source_handler.cc
diff --git a/content/renderer/media/video_source_handler.cc b/content/renderer/media/video_source_handler.cc
index 2eb868111070c39bb3d973c58ec7e48c7a6ff559..4f690c174ef4a4e20d633132cee8617051d4dd73 100644
--- a/content/renderer/media/video_source_handler.cc
+++ b/content/renderer/media/video_source_handler.cc
@@ -52,7 +52,7 @@ class PpFrameReceiver : public MediaStreamVideoSink {
}
void OnVideoFrame(const scoped_refptr<media::VideoFrame>& frame,
- const base::TimeTicks& estimated_capture_time) {
+ base::TimeTicks estimated_capture_time) {
TRACE_EVENT0("video", "PpFrameReceiver::OnVideoFrame");
if (reader_)
reader_->GotFrame(frame);

Powered by Google App Engine
This is Rietveld 408576698