2013-04-10 14:20:43 +00:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface MozObserver;
|
|
|
|
|
2013-04-17 20:29:09 +00:00
|
|
|
[HeaderFile="mozilla/dom/DesktopNotification.h"]
|
2013-04-10 14:20:43 +00:00
|
|
|
interface DesktopNotificationCenter
|
|
|
|
{
|
2013-09-30 16:32:22 +00:00
|
|
|
[NewObject]
|
2013-04-10 14:20:43 +00:00
|
|
|
DesktopNotification createNotification(DOMString title,
|
|
|
|
DOMString description,
|
|
|
|
optional DOMString iconURL = "");
|
|
|
|
};
|
|
|
|
|
|
|
|
interface DesktopNotification : EventTarget
|
|
|
|
{
|
|
|
|
[Throws]
|
|
|
|
void show();
|
|
|
|
|
|
|
|
attribute EventHandler onclick;
|
|
|
|
|
|
|
|
attribute EventHandler onclose;
|
|
|
|
};
|