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

Unified Diff: media/capture/video/video_capture_device.cc

Issue 2686763002: [Mojo Video Capture] Split OnIncomingCapturedVideoFrame() to OnNewBuffer() and OnFrameReadyInBuffer( (Closed)
Patch Set: Created 3 years, 10 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: media/capture/video/video_capture_device.cc
diff --git a/media/capture/video/video_capture_device.cc b/media/capture/video/video_capture_device.cc
index bb441d3a95c3b0cf46b52b57f8c6c934375675d2..7adb91894950e57aa825eb7b9c1e563904f23eb4 100644
--- a/media/capture/video/video_capture_device.cc
+++ b/media/capture/video/video_capture_device.cc
@@ -20,8 +20,8 @@ VideoCaptureDevice::Client::Buffer::Buffer(
int frame_feedback_id,
std::unique_ptr<HandleProvider> handle_provider,
std::unique_ptr<ScopedAccessPermission> access_permission)
- : handle_provider_(std::move(handle_provider)),
- access_permission_(std::move(access_permission)),
+ : handle_provider(std::move(handle_provider)),
+ access_permission(std::move(access_permission)),
id_(buffer_id),
frame_feedback_id_(frame_feedback_id) {}

Powered by Google App Engine
This is Rietveld 408576698