Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1322)

Unified Diff: third_party/WebKit/Source/modules/mediastream/MediaConstraintsImpl.cpp

Issue 1659803002: Remove obsolete getUserMedia constraint. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698