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 == |
mcasas
2015/05/07 22:10:00
Nit: this parenthesis isn't matched.
miu
2015/05/08 06:43:34
Assuming you're talking about the parentheses in t
mcasas
2015/05/08 18:38:41
Oops you're right, I missed l.188. Forget my comme
|
- 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()) { |