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 */
9
10enum RTCSdpType {
11  "offer",
12  "pranswer",
13  "answer",
14  "rollback"
15};
16
17dictionary RTCSessionDescriptionInit {
18  required RTCSdpType type;
19  DOMString sdp = "";
20};
21
22[Pref="media.peerconnection.enabled",
23 JSImplementation="@mozilla.org/dom/rtcsessiondescription;1",
24 Constructor(optional RTCSessionDescriptionInit descriptionInitDict)]
25interface RTCSessionDescription {
26  // These should be readonly, but writing causes deprecation warnings for a bit
27  attribute RTCSdpType type;
28  attribute DOMString sdp;
29
30  [Default] object toJSON();
31};
32