2014-10-27 04:03:00 -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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
[Exposed=ServiceWorker]
|
2015-02-20 07:16:17 -08:00
|
|
|
interface Clients {
|
2015-03-06 05:04:49 -08:00
|
|
|
// The objects returned will be new instances every time
|
2015-10-24 20:23:11 -07:00
|
|
|
[NewObject]
|
2015-11-27 14:27:53 -08:00
|
|
|
Promise<any> get(DOMString id);
|
|
|
|
[NewObject]
|
2016-01-08 19:12:49 -08:00
|
|
|
Promise<sequence<Client>> matchAll(optional ClientQueryOptions options);
|
2015-10-24 20:23:11 -07:00
|
|
|
[NewObject,
|
|
|
|
Func="mozilla::dom::workers::ServiceWorkerGlobalScope::OpenWindowEnabled"]
|
2016-01-08 19:12:49 -08:00
|
|
|
Promise<WindowClient?> openWindow(USVString url);
|
2015-10-24 20:23:11 -07:00
|
|
|
[NewObject]
|
2015-03-06 05:04:49 -08:00
|
|
|
Promise<void> claim();
|
2015-02-20 07:16:17 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary ClientQueryOptions {
|
|
|
|
boolean includeUncontrolled = false;
|
|
|
|
ClientType type = "window";
|
2014-10-27 04:03:00 -07:00
|
|
|
};
|
2015-02-20 07:16:17 -08:00
|
|
|
|
|
|
|
enum ClientType {
|
|
|
|
"window",
|
|
|
|
"worker",
|
|
|
|
"sharedworker",
|
|
|
|
"all"
|
|
|
|
};
|
|
|
|
|