2013-08-27 07:38:37 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-12-04 06:38:21 +04:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cell Broadcast short message service (CBS) permits a number of
|
|
|
|
* unacknowledged general CBS messages to be broadcast to all receivers within
|
|
|
|
* a particular region.
|
|
|
|
*/
|
2015-01-29 10:49:40 +03:00
|
|
|
[Pref="dom.cellbroadcast.enabled",
|
2015-07-14 05:25:26 +03:00
|
|
|
CheckAnyPermissions="cellbroadcast",
|
2015-01-29 10:49:40 +03:00
|
|
|
AvailableIn="CertifiedApps"]
|
2013-08-27 07:38:37 +04:00
|
|
|
interface MozCellBroadcast : EventTarget
|
2012-12-04 06:38:21 +04:00
|
|
|
{
|
2013-08-27 07:38:37 +04:00
|
|
|
/**
|
|
|
|
* Cell Broadcast messages received.
|
|
|
|
*/
|
|
|
|
attribute EventHandler onreceived;
|
2012-12-04 06:38:21 +04:00
|
|
|
};
|