2014-10-27 11:03:00 +00: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 15:16:17 +00:00
|
|
|
interface Clients {
|
2015-03-06 13:04:49 +00:00
|
|
|
// The objects returned will be new instances every time
|
2015-10-25 03:23:11 +00:00
|
|
|
[NewObject]
|
2015-11-27 22:27:53 +00:00
|
|
|
Promise<any> get(DOMString id);
|
|
|
|
[NewObject]
|
2015-02-20 15:16:17 +00:00
|
|
|
Promise<sequence<Client>?> matchAll(optional ClientQueryOptions options);
|
2015-10-25 03:23:11 +00:00
|
|
|
[NewObject,
|
|
|
|
Func="mozilla::dom::workers::ServiceWorkerGlobalScope::OpenWindowEnabled"]
|
2015-03-06 13:04:49 +00:00
|
|
|
Promise<WindowClient> openWindow(USVString url);
|
2015-10-25 03:23:11 +00:00
|
|
|
[NewObject]
|
2015-03-06 13:04:49 +00:00
|
|
|
Promise<void> claim();
|
2015-02-20 15:16:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary ClientQueryOptions {
|
|
|
|
boolean includeUncontrolled = false;
|
|
|
|
ClientType type = "window";
|
2014-10-27 11:03:00 +00:00
|
|
|
};
|
2015-02-20 15:16:17 +00:00
|
|
|
|
|
|
|
enum ClientType {
|
|
|
|
"window",
|
|
|
|
"worker",
|
|
|
|
"sharedworker",
|
|
|
|
"all"
|
|
|
|
};
|
|
|
|
|