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

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

Issue 2410383002: VideoCapture: more migration IPC-->mojo, part 6 (Closed)
Patch Set: Comment correction Created 4 years, 2 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_manager.cc
diff --git a/content/browser/renderer_host/media/video_capture_manager.cc b/content/browser/renderer_host/media/video_capture_manager.cc
index d83a3bfb9e8b89e214cbb8f98ffabb31011447b9..918630cf7b45a1c1c7bad04b0db34a395627925b 100644
--- a/content/browser/renderer_host/media/video_capture_manager.cc
+++ b/content/browser/renderer_host/media/video_capture_manager.cc
@@ -654,7 +654,6 @@ VideoCaptureManager::DoStartDesktopCaptureOnDeviceThread(
void VideoCaptureManager::StartCaptureForClient(
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params,
- base::ProcessHandle client_render_process,
VideoCaptureControllerID client_id,
VideoCaptureControllerEventHandler* client_handler,
const DoneCB& done_cb) {
@@ -682,7 +681,7 @@ void VideoCaptureManager::StartCaptureForClient(
// Run the callback first, as AddClient() may trigger OnFrameInfo().
done_cb.Run(entry->video_capture_controller()->GetWeakPtrForIOThread());
entry->video_capture_controller()->AddClient(
- client_id, client_handler, client_render_process, session_id, params);
+ client_id, client_handler, session_id, params);
}
void VideoCaptureManager::StopCaptureForClient(

Powered by Google App Engine
This is Rietveld 408576698