Files
palemoon27/dom/webidl/RTCPeerConnectionIceEvent.webidl
roytam1 8c12bb3492 import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1155923 - Removing moz prefix from RTC interfaces, r=jesup,smaug (db1bd2fe68)
- Bug 1155923 - Temporarily restoring moz-prefixed interface, r=jesup,smaug (e1e9ecd7eb)
- Bug 1203167 - stop serializing user-installed engines to XML files, r=adw. (e1f85fcf16)
- Bug 1178453 - Change logging in storage-json.js to avoid string concatenation. r=MattN (06f78f0f57)
- No bug - Password manager: Modernize the style of storage-json.js. (42fb046b66)
- Bug 1166961 - Show click to play button on Fennec when autoplay is blocked. r=mfinkle (322b8670f1)
- Bug 1217082 - Remove for-each from toolkit/. r=Gijs (b98cb95f9b)
- Bug 1203167 - Keep user-installed engines when refreshing an outdated cache, r=adw. (c2c74e49cb)
- Bug 1124605 - Execute dragStateChanged(false) before the element is hidden. r=jaws (056b585257)
- bit of  Bug 1141661 - No need to manually convert this URI anymore. r=mossop (a22910d350)
- Bug 862148 - stop parsing Sherlock plugins, r=adw. (4e75933ad5)
- Bug 862148 - remove the _parseAsOpenSearch method, r=adw. (bf6266c9de)
2023-01-27 10:35:59 +08:00

20 lines
739 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/.
*
* The origin of this IDL file is
* http://dev.w3.org/2011/webrtc/editor/webrtc.html#idl-def-RTCPeerConnectionIceEvent
*/
dictionary RTCPeerConnectionIceEventInit : EventInit {
RTCIceCandidate? candidate = null;
};
[Pref="media.peerconnection.enabled",
Constructor(DOMString type,
optional RTCPeerConnectionIceEventInit eventInitDict)]
interface RTCPeerConnectionIceEvent : Event {
readonly attribute RTCIceCandidate? candidate;
};