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

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

Issue 2857303002: [Mojo Video Capture] Implement a VideoCaptureProvider using the Mojo service (part 2) (Closed)
Patch Set: Created 3 years, 8 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/in_process_video_capture_device_launcher.cc
diff --git a/content/browser/renderer_host/media/in_process_video_capture_device_launcher.cc b/content/browser/renderer_host/media/in_process_video_capture_device_launcher.cc
index cbe2305f2022ef6485e5b9dc76d21786131088ad..8a3642de0db4e6e3820f98a862e76ca2d4fad07e 100644
--- a/content/browser/renderer_host/media/in_process_video_capture_device_launcher.cc
+++ b/content/browser/renderer_host/media/in_process_video_capture_device_launcher.cc
@@ -82,7 +82,7 @@ void InProcessVideoCaptureDeviceLauncher::LaunchDeviceAsync(
auto device_client = CreateDeviceClient(max_buffers, std::move(receiver));
base::Closure start_capture_closure;
- // Use of |this| is safe, because |done_cb| guarantees that |this|
+ // Use of Unretained |this| is safe, because |done_cb| guarantees that |this|
// stays alive.
ReceiveDeviceCallback after_start_capture_callback = media::BindToCurrentLoop(
base::Bind(&InProcessVideoCaptureDeviceLauncher::OnDeviceStarted,

Powered by Google App Engine
This is Rietveld 408576698