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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-04-04 08:46:07 +03:00
|
|
|
[Func="mozilla::dom::ServiceWorkerRegistrationVisible",
|
|
|
|
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;
|
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
|
|
|
|
|
|
|
partial interface ServiceWorkerRegistration {
|
|
|
|
#ifndef MOZ_SIMPLEPUSH
|
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;
|
|
|
|
#endif
|
|
|
|
};
|