2014-08-19 17:56:00 +04: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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html
|
2017-01-25 00:11:30 +03:00
|
|
|
* https://w3c.github.io/push-api/
|
|
|
|
* https://notifications.spec.whatwg.org/
|
2014-08-19 17:56:00 +04:00
|
|
|
*/
|
|
|
|
|
2016-06-12 17:26:51 +03:00
|
|
|
[Func="mozilla::dom::ServiceWorkerRegistration::Visible",
|
2015-04-04 08:46:07 +03:00
|
|
|
Exposed=(Window,Worker)]
|
2014-08-19 17:56:00 +04:00
|
|
|
interface ServiceWorkerRegistration : EventTarget {
|
|
|
|
[Unforgeable] readonly attribute ServiceWorker? installing;
|
|
|
|
[Unforgeable] readonly attribute ServiceWorker? waiting;
|
|
|
|
[Unforgeable] readonly attribute ServiceWorker? active;
|
|
|
|
|
2014-11-20 14:58:00 +03:00
|
|
|
readonly attribute USVString scope;
|
2017-08-16 09:21:29 +03:00
|
|
|
readonly attribute ServiceWorkerUpdateViaCache updateViaCache;
|
2014-08-19 17:56:00 +04:00
|
|
|
|
2015-08-15 01:06:00 +03:00
|
|
|
[Throws, NewObject]
|
|
|
|
Promise<void> update();
|
2015-03-20 04:09:10 +03:00
|
|
|
|
2015-08-15 01:06:00 +03:00
|
|
|
[Throws, NewObject]
|
2014-08-19 17:56:00 +04:00
|
|
|
Promise<boolean> unregister();
|
|
|
|
|
|
|
|
// event
|
|
|
|
attribute EventHandler onupdatefound;
|
|
|
|
};
|
2015-04-11 06:19:28 +03:00
|
|
|
|
2017-08-16 09:18:52 +03:00
|
|
|
enum ServiceWorkerUpdateViaCache {
|
|
|
|
"imports",
|
|
|
|
"all",
|
|
|
|
"none"
|
|
|
|
};
|
|
|
|
|
2017-01-25 00:11:30 +03:00
|
|
|
// https://w3c.github.io/push-api/
|
2015-04-11 06:19:28 +03:00
|
|
|
partial interface ServiceWorkerRegistration {
|
2015-07-27 22:35:28 +03:00
|
|
|
[Throws, Exposed=(Window,Worker), Func="nsContentUtils::PushEnabled"]
|
2015-04-11 06:19:28 +03:00
|
|
|
readonly attribute PushManager pushManager;
|
|
|
|
};
|
2017-01-25 00:11:30 +03:00
|
|
|
|
|
|
|
// https://notifications.spec.whatwg.org/
|
|
|
|
partial interface ServiceWorkerRegistration {
|
|
|
|
[Throws, Func="mozilla::dom::ServiceWorkerRegistration::NotificationAPIVisible"]
|
|
|
|
Promise<void> showNotification(DOMString title, optional NotificationOptions options);
|
|
|
|
[Throws, Func="mozilla::dom::ServiceWorkerRegistration::NotificationAPIVisible"]
|
|
|
|
Promise<sequence<Notification>> getNotifications(optional GetNotificationOptions filter);
|
|
|
|
};
|