Index: third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp |
diff --git a/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp b/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp |
index de2411a2e13d02338d106e7274e9be72cecb0f8c..f079e99e80fa40637b26732cf436e06f9a32ac6d 100644 |
--- a/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp |
+++ b/third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp |
@@ -94,7 +94,6 @@ const char kDAEchoCancellation[] = "googDAEchoCancellation"; |
// const char kHighpassFilter[] = "googHighpassFilter"; // duplicate k-name |
// const char kTypingNoiseDetection[] = "googTypingNoiseDetection"; // duplicate k-name |
// const char kAudioMirroring[] = "googAudioMirroring"; // duplicate k-name |
-const char kAecDump[] = "audioDebugRecording"; |
// Google-specific constraint keys for a local video source (getUserMedia). |
const char kNoiseReduction[] = "googNoiseReduction"; |
@@ -313,8 +312,6 @@ static void parseOldStyleNames(ExecutionContext* context, const WebVector<WebMed |
result.googAudioMirroring.setExact(toBoolean(constraint.m_value)); |
} else if (constraint.m_name.equals(kDAEchoCancellation)) { |
result.googDAEchoCancellation.setExact(toBoolean(constraint.m_value)); |
- } else if (constraint.m_name.equals(kAecDump)) { |
- result.googAecDump.setExact(toBoolean(constraint.m_value)); |
} else if (constraint.m_name.equals(kNoiseReduction)) { |
result.googNoiseReduction.setExact(toBoolean(constraint.m_value)); |
} else if (constraint.m_name.equals(kOfferToReceiveAudio)) { |