Index: content/browser/renderer_host/media/media_stream_manager.cc |
diff --git a/content/browser/renderer_host/media/media_stream_manager.cc b/content/browser/renderer_host/media/media_stream_manager.cc |
index a4a95e0aea2d142b8f6a93fd2fe96b652303ed68..5071bff1308920c61e35c4b6e1fa655128c52cfa 100644 |
--- a/content/browser/renderer_host/media/media_stream_manager.cc |
+++ b/content/browser/renderer_host/media/media_stream_manager.cc |
@@ -127,12 +127,7 @@ void ParseStreamType(const StreamOptions& options, |
// explicitly turn them off. |
void FilterAudioEffects(const StreamOptions& options, int* effects) { |
DCHECK(effects); |
- // TODO(ajm): Should we also handle ECHO_CANCELLER here? |
- std::string value; |
- if (options.GetFirstAudioConstraintByName( |
- kMediaStreamAudioDucking, &value, NULL) && value == "false") { |
- *effects &= ~media::AudioParameters::DUCKING; |
- } |
+ // TODO(ajm): Should we handle ECHO_CANCELLER here? |
} |
// Unlike other effects, hotword is off by default, so turn it on if it's |