Files
palemoon27/dom/webidl/CreateOfferRequest.webidl
roytam1 34929c3a27 partly import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1152538 - Removing RTCIdentityAssertion interface code, r=jib (b89f1a9ebc)
- Bug 1158868 - PeerConnection should not depend on navigator.onLine r=jesup (77c66505ff)
- Bug 1167922 - Handle broken entries in media.peerconnection.default_iceservers more gracefully. r=jib (b24406479f)
- Bug 1189030 - Add pref "media.peerconnection.ice.relay_only" (default=false). r=jesup (eafbcf9412)
- Bug 1187206 - Adding checks for null SDP, r=jib (8de79e683e)
- Bug 1189060 - add CreateOfferRequest.webidl interface for add-ons r=florian,peterv (e901784f32)
- Bug 1191180 - Wait for certificate before generating identity assertion, r=jib (ced0fc6aaf)
- Bug 1207784 - skip permission hooks in createOffer when called from privileged code (add-ons). r=mt (0052b94f8a)
- Bug 1098015 - Make createAnswer tolerate (no-op) options argument. r=bwc, r=bz (9dd5250811)
- Bug 1064223 - Remove support for constraint-like RTCOfferOptions predecessor. r=mt (7fad1b56d5)
2022-10-05 16:22:14 +08:00

17 lines
611 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This is an internal IDL file
*/
[ChromeOnly,
JSImplementation="@mozilla.org/dom/createofferrequest;1"]
interface CreateOfferRequest {
readonly attribute unsigned long long windowID;
readonly attribute unsigned long long innerWindowID;
readonly attribute DOMString callID;
readonly attribute boolean isSecure;
};