Chromium Code Reviews| 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.
|
| }; |