Raw File
PushManager.webidl
/* -*- 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/.
*
* The origin of this IDL file is
* https://w3c.github.io/push-api/
*/

// Please see comments in dom/push/PushManager.h for the split between
// PushManagerImpl and PushManager.
[JSImplementation="@mozilla.org/push/PushManager;1",
 NoInterfaceObject]
interface PushManagerImpl {
    Promise<PushSubscription>     subscribe();
    Promise<PushSubscription?>    getSubscription();
    Promise<PushPermissionState> permissionState();

    // 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);
};

[Exposed=(Window,Worker), Func="nsContentUtils::PushEnabled"]
interface PushManager {
  [ChromeOnly, Throws, Exposed=Window]
  void setPushManagerImpl(PushManagerImpl store);

  [Throws, UseCounter]
  Promise<PushSubscription>     subscribe();
  [Throws]
  Promise<PushSubscription?>    getSubscription();
  [Throws]
  Promise<PushPermissionState> permissionState();
};

enum PushPermissionState
{
    "granted",
    "denied",
    "prompt"
};
back to top