Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / USSDReceivedEvent.webidl
blob5583ec795ee85900a03b541b38aff46184824900
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  */
7 [Pref="dom.telephony.enabled",
8  CheckPermissions="telephony",
9  AvailableIn="CertifiedApps",
10  Constructor(DOMString type, optional USSDReceivedEventInit eventInitDict)]
11 interface USSDReceivedEvent : Event
13   readonly attribute unsigned long serviceId;
14   readonly attribute DOMString? message;
15   readonly attribute USSDSession? session;  // null if session is ended.
18 dictionary USSDReceivedEventInit : EventInit
20   unsigned long serviceId = 0;
21   DOMString? message = null;
22   USSDSession? session = null;