mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f83c5f81d0
Counters do not currently work on Web Workers, so it a no-op on non main thread.
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
/* -*- 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"
|
|
};
|