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

Unified Diff: media/base/video_capturer_source.h

Issue 1315993003: Reland: Change VideoCaptureDeliverFrameCB's signature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address new changes 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
« no previous file with comments | « content/renderer/pepper/pepper_platform_video_capture.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_capturer_source.h
diff --git a/media/base/video_capturer_source.h b/media/base/video_capturer_source.h
index 774f28da02faf97e188a1eaffc5e5308b877c764..dc37e96aec99f64da807aee0003b42b689d1a372 100644
--- a/media/base/video_capturer_source.h
+++ b/media/base/video_capturer_source.h
@@ -40,10 +40,9 @@ class MEDIA_EXPORT VideoCapturerSource {
// frame relative to the first frame generated by the corresponding source.
// Because a source can start generating frames before a subscriber is added,
// the first video frame delivered may not have timestamp equal to 0.
- typedef base::Callback<
- void(const scoped_refptr<media::VideoFrame>& video_frame,
- const base::TimeTicks& estimated_capture_time)>
- VideoCaptureDeliverFrameCB;
+ typedef base::Callback<void(
+ const scoped_refptr<media::VideoFrame>& video_frame,
+ base::TimeTicks estimated_capture_time)> VideoCaptureDeliverFrameCB;
typedef base::Callback<void(const media::VideoCaptureFormats&)>
VideoCaptureDeviceFormatsCB;
« no previous file with comments | « content/renderer/pepper/pepper_platform_video_capture.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698