Bug 1861467 - [wpt-sync] Update web-platform-tests to eedf737ce39c512d0ca3471f988972e...
[gecko.git] / dom / webidl / RTCSessionDescription.webidl
blob6cf116ff6ef5a0aec06264fd905c2ca86e08eb01
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * http://dev.w3.org/2011/webrtc/editor/webrtc.html#idl-def-RTCSessionDescription
8  */
10 enum RTCSdpType {
11   "offer",
12   "pranswer",
13   "answer",
14   "rollback"
17 dictionary RTCSessionDescriptionInit {
18   RTCSdpType type;
19   DOMString sdp = "";
22 [Pref="media.peerconnection.enabled",
23  JSImplementation="@mozilla.org/dom/rtcsessiondescription;1",
24  Exposed=Window]
25 interface RTCSessionDescription {
26   [Throws]
27   constructor(optional RTCSessionDescriptionInit descriptionInitDict = {});
29   // These should be readonly, but writing causes deprecation warnings for a bit
30   attribute RTCSdpType type;
31   attribute DOMString sdp;
33   [Default] object toJSON();