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

Unified Diff: content/common/media/media_stream_options.cc

Issue 155863003: Add basic support for "googDucking" to getUserMedia on Windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 10 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
Index: content/common/media/media_stream_options.cc
diff --git a/content/common/media/media_stream_options.cc b/content/common/media/media_stream_options.cc
index 4ddef015334c3b42b75f5d88121b3b6d5056f2a6..c727b63718cd3b3ff6e6a2152ab9e5caa80fafa0 100644
--- a/content/common/media/media_stream_options.cc
+++ b/content/common/media/media_stream_options.cc
@@ -17,6 +17,9 @@ const char kMediaStreamSourceDesktop[] = "desktop";
const char kMediaStreamSourceSystem[] = "system";
const char kMediaStreamRenderToAssociatedSink[] =
"chromeRenderToAssociatedSink";
+// The prefix of this constant is 'goog' to match with other getUserMedia
+// constraints for audio.
+const char kMediaStreamAudioDucking[] = "googDucking";
DaleCurtis 2014/02/05 22:15:43 Is this a web facing attribute? I'm not familiar
tommi (sloooow) - chröme 2014/02/06 11:50:34 Yes, these are constraints that can be passed to g
DaleCurtis 2014/02/06 19:19:59 Do you need to make any FYI / PSA announcements on
namespace {

Powered by Google App Engine
This is Rietveld 408576698