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

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

Issue 83633008: Reland: Reorganize media::VideoCapture* types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: content/browser/renderer_host/media/video_capture_host.h
diff --git a/content/browser/renderer_host/media/video_capture_host.h b/content/browser/renderer_host/media/video_capture_host.h
index 4648466cdefac5edb4018923526af2d0e34900e0..c1f8e3c9e0b35016cbecf9839ee3c42e64c95c26 100644
--- a/content/browser/renderer_host/media/video_capture_host.h
+++ b/content/browser/renderer_host/media/video_capture_host.h
@@ -104,16 +104,17 @@ class CONTENT_EXPORT VideoCaptureHost
virtual ~VideoCaptureHost();
// IPC message: Start capture on the VideoCaptureDevice referenced by
- // VideoCaptureParams::session_id. |device_id| is an id created by
- // VideoCaptureMessageFilter to identify a session
- // between a VideoCaptureMessageFilter and a VideoCaptureHost.
+ // |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, const media::VideoCaptureParams& params,
+ int device_id,
const base::WeakPtr<VideoCaptureController>& controller);
void DoControllerAddedOnIOThread(
- int device_id, const media::VideoCaptureParams& params,
+ int device_id,
const base::WeakPtr<VideoCaptureController>& controller);
// IPC message: Stop capture on device referenced by |device_id|.

Powered by Google App Engine
This is Rietveld 408576698