mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
34929c3a27
- 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)
17 lines
611 B
Plaintext
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;
|
|
};
|