RTCSessionDescription.webidl (1034B)
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 * https://www.w3.org/TR/webrtc/#rtcsessiondescription-class 8 */ 9 10 enum RTCSdpType { 11 "offer", 12 "pranswer", 13 "answer", 14 "rollback" 15 }; 16 17 dictionary RTCSessionDescriptionInit { 18 required RTCSdpType type; 19 DOMString sdp = ""; 20 }; 21 22 dictionary RTCLocalSessionDescriptionInit { 23 RTCSdpType type; 24 DOMString sdp = ""; 25 }; 26 27 [Pref="media.peerconnection.enabled", 28 JSImplementation="@mozilla.org/dom/rtcsessiondescription;1", 29 Exposed=Window] 30 interface RTCSessionDescription { 31 [Throws] 32 constructor(RTCSessionDescriptionInit descriptionInitDict); 33 34 // These should be readonly, but writing causes deprecation warnings for a bit 35 attribute RTCSdpType type; 36 attribute DOMString sdp; 37 38 [Default] object toJSON(); 39 };