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

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

Issue 2064593003: Support legacy offerToReceiveAudio/offerToReceiveVideo fields in RTCOfferAnswerOptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix format 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..805e7a084310beabef4a0817b9fd2e516f6b5c39 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl
+++ b/third_party/WebKit/Source/modules/mediastream/RTCOfferOptions.idl
@@ -5,5 +5,10 @@
// https://w3c.github.io/webrtc-pc/#offer-answer-options
dictionary RTCOfferOptions : RTCOfferAnswerOptions {
- boolean iceRestart = false;
+ boolean iceRestart = false;
+
+ // TODO(guidou): Remove the offerToReceive fields once transceiver support
hta - Chromium 2016/06/13 11:32:33 We should probably say "deprecate and remove".
Guido Urdaneta 2016/06/13 12:13:10 Done.
+ // becomes available.
+ [countAs=RTCOfferOptionsOfferToReceiveVideo] long offerToReceiveVideo;
+ [countAs=RTCOfferOptionsOfferToReceiveAudio] long offerToReceiveAudio;
hta - Chromium 2016/06/13 11:32:33 I think these need to be in RTCOfferAnswerOptions
Guido Urdaneta 2016/06/13 12:13:10 Done.
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698