Index: content/browser/renderer_host/media/video_capture_manager.h |
diff --git a/content/browser/renderer_host/media/video_capture_manager.h b/content/browser/renderer_host/media/video_capture_manager.h |
index 6f0b0ec4702dedd2e9e2f43caecee942542ec5e8..67dbb753735a817cb4a2d998c5eb3b916bad53c9 100644 |
--- a/content/browser/renderer_host/media/video_capture_manager.h |
+++ b/content/browser/renderer_host/media/video_capture_manager.h |
@@ -58,7 +58,7 @@ class CONTENT_EXPORT VideoCaptureManager : public MediaStreamProvider { |
// Called by VideoCaptureHost to locate a capture device for |capture_params|, |
// adding the Host as a client of the device's controller if successful. The |
- // value of |capture_params.session_id| controls which device is selected; |
+ // value of |session_id| controls which device is selected; |
// this value should be a session id previously returned by Open(). |
// |
// If the device is not already started (i.e., no other client is currently |
@@ -68,7 +68,8 @@ class CONTENT_EXPORT VideoCaptureManager : public MediaStreamProvider { |
// On success, the controller is returned via calling |done_cb|, indicating |
// that the client was successfully added. A NULL controller is passed to |
// the callback on failure. |
- void StartCaptureForClient(const media::VideoCaptureParams& capture_params, |
+ void StartCaptureForClient(media::VideoCaptureSessionId session_id, |
+ const media::VideoCaptureParams& capture_params, |
base::ProcessHandle client_render_process, |
VideoCaptureControllerID client_id, |
VideoCaptureControllerEventHandler* client_handler, |
@@ -120,7 +121,7 @@ class CONTENT_EXPORT VideoCaptureManager : public MediaStreamProvider { |
// the device. |
void DoStartDeviceOnDeviceThread( |
DeviceEntry* entry, |
- const media::VideoCaptureCapability& capture_params, |
+ const media::VideoCaptureParams& params, |
scoped_ptr<media::VideoCaptureDevice::Client> client); |
// Stop and destroy the VideoCaptureDevice held in |