2013-08-02 17:18:35 -07: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/.
|
2015-04-10 20:19:28 -07:00
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://w3c.github.io/push-api/
|
2013-08-02 17:18:35 -07:00
|
|
|
*/
|
|
|
|
|
2015-07-23 08:30:15 -07:00
|
|
|
// Please see comments in dom/push/PushManager.h for the split between
|
|
|
|
// PushManagerImpl and PushManager.
|
2015-04-10 20:19:28 -07:00
|
|
|
[JSImplementation="@mozilla.org/push/PushManager;1",
|
2015-07-23 08:30:15 -07:00
|
|
|
NoInterfaceObject]
|
|
|
|
interface PushManagerImpl {
|
2015-04-10 20:19:28 -07:00
|
|
|
Promise<PushSubscription> subscribe();
|
|
|
|
Promise<PushSubscription?> getSubscription();
|
2015-07-14 14:27:32 -07:00
|
|
|
Promise<PushPermissionState> permissionState();
|
2015-04-10 20:19:28 -07:00
|
|
|
|
|
|
|
// We need a setter in the bindings so that the C++ can use it,
|
|
|
|
// but we don't want it exposed to client JS. WebPushMethodHider
|
|
|
|
// always returns false.
|
|
|
|
[Func="ServiceWorkerRegistration::WebPushMethodHider"] void setScope(DOMString scope);
|
|
|
|
};
|
|
|
|
|
2015-07-27 12:35:28 -07:00
|
|
|
[Exposed=(Window,Worker), Func="nsContentUtils::PushEnabled"]
|
2015-07-23 08:30:15 -07:00
|
|
|
interface PushManager {
|
|
|
|
[ChromeOnly, Throws, Exposed=Window]
|
|
|
|
void setPushManagerImpl(PushManagerImpl store);
|
|
|
|
|
2015-09-03 17:54:59 -07:00
|
|
|
[Throws, UseCounter]
|
2015-07-23 08:30:15 -07:00
|
|
|
Promise<PushSubscription> subscribe();
|
|
|
|
[Throws]
|
|
|
|
Promise<PushSubscription?> getSubscription();
|
|
|
|
[Throws]
|
|
|
|
Promise<PushPermissionState> permissionState();
|
|
|
|
};
|
|
|
|
|
2015-07-14 14:27:32 -07:00
|
|
|
enum PushPermissionState
|
2015-04-10 20:19:28 -07:00
|
|
|
{
|
|
|
|
"granted",
|
|
|
|
"denied",
|
2015-07-14 14:27:32 -07:00
|
|
|
"prompt"
|
2013-08-02 17:18:35 -07:00
|
|
|
};
|