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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl

Issue 2064593003: Support legacy offerToReceiveAudio/offerToReceiveVideo fields in RTCOfferAnswerOptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: haraken's comments Created 4 years, 6 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: third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl b/third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl
index 26f98a3c8a9bb8aad090e9a97a72852923741746..7dffedf311e26edf4a752c39a0c4ab5d07239ec3 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl
+++ b/third_party/WebKit/Source/modules/mediastream/RTCOfferAnswerOptions.idl
@@ -6,4 +6,9 @@
dictionary RTCOfferAnswerOptions {
boolean voiceActivityDetection = true;
+
+ // TODO(guidou): Deprecate and remove the offerToReceive fields once
+ // transceiver support becomes available.
+ [countAs=RTCOfferToReceiveVideo] long offerToReceiveVideo;
foolip 2016/06/20 08:13:47 countAs is not in https://chromium.googlesource.co
hta - Chromium 2016/06/20 12:48:12 Should be "measureAs", I think.
+ [countAs=RTCOfferToReceiveAudio] long offerToReceiveAudio;
};

Powered by Google App Engine
This is Rietveld 408576698