Definition
WebRTC: Real-Time Communication in Browsers defines RTCOfferOptions
dictionary RTCOfferOptions : RTCOfferAnswerOptions {
boolean iceRestart = false;
};
partial dictionary RTCOfferOptions {
boolean offerToReceiveAudio;
boolean offerToReceiveVideo;
};
Consolidated IDL (across partials)
dictionary RTCOfferOptions : RTCOfferAnswerOptions {
boolean iceRestart = false;
boolean offerToReceiveAudio;
boolean offerToReceiveVideo;
};