2013-08-27 03:38:37 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-12-04 02:38:21 +00: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.
|
|
|
|
*/
|
2013-10-17 20:51:27 +00:00
|
|
|
[Pref="dom.cellbroadcast.enabled"]
|
2013-08-27 03:38:37 +00:00
|
|
|
interface MozCellBroadcast : EventTarget
|
2012-12-04 02:38:21 +00:00
|
|
|
{
|
2013-08-27 03:38:37 +00:00
|
|
|
/**
|
|
|
|
* Cell Broadcast messages received.
|
|
|
|
*/
|
|
|
|
attribute EventHandler onreceived;
|
2012-12-04 02:38:21 +00:00
|
|
|
};
|