Chromium Code Reviews| Index: content/renderer/media/media_stream_video_source.cc |
| diff --git a/content/renderer/media/media_stream_video_source.cc b/content/renderer/media/media_stream_video_source.cc |
| index 0f531443b61e26566ce755385c84f5cb1dbf2ea7..ab1453fed9bb3c12922edc98e15080c5bf316bad 100644 |
| --- a/content/renderer/media/media_stream_video_source.cc |
| +++ b/content/renderer/media/media_stream_video_source.cc |
| @@ -20,10 +20,15 @@ namespace content { |
| namespace { |
| -const char* const kLegalVideoConstraints[] = { |
| - "width", "height", "aspectRatio", "frameRate", |
| - "facingMode", "deviceId", "groupId", "mediaStreamSource", |
| -}; |
| +const char* const kLegalVideoConstraints[] = {"width", |
| + "height", |
| + "aspectRatio", |
| + "frameRate", |
| + "facingMode", |
| + "deviceId", |
| + "groupId", |
| + "mediaStreamSource", |
| + "googNoiseReduction"}; |
|
tommi (sloooow) - chröme
2016/10/10 09:53:35
should there be a TODO here to remove the 'goog' p
hta - Chromium
2016/10/10 13:15:02
crbug.com/605673 - this covers all the goog constr
|
| // Returns true if |constraint| has mandatory constraints. |
| bool HasMandatoryConstraints(const blink::WebMediaConstraints& constraints) { |