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

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

Issue 2077323003: Support legacy offerToReceiveAudio/offerToReceiveVideo fields in RTCOfferOptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/RTCOfferOptions.idl
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl b/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl
index 289e6a5c65c961d2bb95aed78a8b5768d6c2614a..7075df0ef93c50e1bd3d60ad18bdf38d4a2864fe 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl
+++ b/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl
@@ -6,4 +6,9 @@
dictionary RTCOfferOptions : RTCOfferAnswerOptions {
boolean iceRestart = false;
+
+ // TODO(guidou): Deprecate the offerToReceive fields depending on the
+ // outcome of https://github.com/w3c/webrtc-pc/issues/709
+ long offerToReceiveVideo;
+ long offerToReceiveAudio;
};

Powered by Google App Engine
This is Rietveld 408576698