| Index: content/browser/media/capture/web_contents_video_capture_device.cc
|
| diff --git a/content/browser/media/capture/web_contents_video_capture_device.cc b/content/browser/media/capture/web_contents_video_capture_device.cc
|
| index f269ee4754a96510c4715f20d00a26dd8b6d59be..acb69d1ff0d08567338eddd30c667897dc74f36a 100644
|
| --- a/content/browser/media/capture/web_contents_video_capture_device.cc
|
| +++ b/content/browser/media/capture/web_contents_video_capture_device.cc
|
| @@ -960,9 +960,11 @@ media::VideoCaptureDevice* WebContentsVideoCaptureDevice::Create(
|
| return NULL;
|
| }
|
|
|
| + bool auto_throttling;
|
| + WebContentsMediaCaptureId::ExtractOptions(device_id, &auto_throttling,
|
| + nullptr);
|
| return new WebContentsVideoCaptureDevice(
|
| - render_process_id, main_render_frame_id,
|
| - WebContentsMediaCaptureId::IsAutoThrottlingOptionSet(device_id));
|
| + render_process_id, main_render_frame_id, auto_throttling);
|
| }
|
|
|
| void WebContentsVideoCaptureDevice::AllocateAndStart(
|
|
|