| Index: content/browser/renderer_host/media/video_capture_host.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_host.cc b/content/browser/renderer_host/media/video_capture_host.cc
|
| index 72e440cd2e928688413a2aeea61e37a36784962c..a546bbd26ab14525d51415b604b25d39942d9fad 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host.cc
|
| @@ -180,8 +180,11 @@ void VideoCaptureHost::OnStartCapture(int device_id,
|
| << ", format=" << params.requested_format.ToString()
|
| << "@" << params.requested_format.frame_rate
|
| << " (" << (params.resolution_change_policy ==
|
| - media::RESOLUTION_POLICY_DYNAMIC_WITHIN_LIMIT ?
|
| - "variable" : "constant")
|
| + media::RESOLUTION_POLICY_FIXED_RESOLUTION ?
|
| + "fixed resolution" :
|
| + (params.resolution_change_policy ==
|
| + media::RESOLUTION_POLICY_FIXED_ASPECT_RATIO ?
|
| + "fixed aspect ratio" : "variable resolution"))
|
| << ")";
|
| VideoCaptureControllerID controller_id(device_id);
|
| if (entries_.find(controller_id) != entries_.end()) {
|
|
|