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

Unified Diff: trunk/src/content/browser/renderer_host/media/video_capture_host.h

Issue 84393002: Revert 236927 "Reorganize media::VideoCapture* types" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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: trunk/src/content/browser/renderer_host/media/video_capture_host.h
===================================================================
--- trunk/src/content/browser/renderer_host/media/video_capture_host.h (revision 236934)
+++ trunk/src/content/browser/renderer_host/media/video_capture_host.h (working copy)
@@ -104,17 +104,16 @@
virtual ~VideoCaptureHost();
// IPC message: Start capture on the VideoCaptureDevice referenced by
- // |session_id|. |device_id| is an id created by VideoCaptureMessageFilter
- // to identify a session between a VideoCaptureMessageFilter and a
- // VideoCaptureHost.
+ // VideoCaptureParams::session_id. |device_id| is an id created by
+ // VideoCaptureMessageFilter to identify a session
+ // between a VideoCaptureMessageFilter and a VideoCaptureHost.
void OnStartCapture(int device_id,
- media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params);
void OnControllerAdded(
- int device_id,
+ int device_id, const media::VideoCaptureParams& params,
const base::WeakPtr<VideoCaptureController>& controller);
void DoControllerAddedOnIOThread(
- int device_id,
+ int device_id, const media::VideoCaptureParams& params,
const base::WeakPtr<VideoCaptureController>& controller);
// IPC message: Stop capture on device referenced by |device_id|.

Powered by Google App Engine
This is Rietveld 408576698