2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-03-02 16:12:00 +03:00
|
|
|
/* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#cache-storage
|
|
|
|
|
2015-05-06 01:45:36 +03:00
|
|
|
interface Principal;
|
|
|
|
|
2015-03-02 16:12:00 +03:00
|
|
|
[Exposed=(Window,Worker),
|
2019-06-13 12:01:41 +03:00
|
|
|
Pref="dom.caches.enabled"]
|
2015-03-02 16:12:00 +03:00
|
|
|
interface CacheStorage {
|
2019-09-12 00:04:12 +03:00
|
|
|
[Throws, ChromeOnly]
|
|
|
|
constructor(CacheStorageNamespace namespace, Principal principal);
|
|
|
|
|
2015-05-06 01:45:36 +03:00
|
|
|
[NewObject]
|
2020-09-17 16:02:46 +03:00
|
|
|
Promise<Response> match(RequestInfo request, optional MultiCacheQueryOptions options = {});
|
2015-05-06 01:45:36 +03:00
|
|
|
[NewObject]
|
|
|
|
Promise<boolean> has(DOMString cacheName);
|
|
|
|
[NewObject]
|
|
|
|
Promise<Cache> open(DOMString cacheName);
|
|
|
|
[NewObject]
|
|
|
|
Promise<boolean> delete(DOMString cacheName);
|
|
|
|
[NewObject]
|
|
|
|
Promise<sequence<DOMString>> keys();
|
2015-03-02 16:12:00 +03:00
|
|
|
};
|
2015-05-06 01:45:36 +03:00
|
|
|
|
2020-09-17 16:02:46 +03:00
|
|
|
dictionary MultiCacheQueryOptions : CacheQueryOptions {
|
|
|
|
DOMString cacheName;
|
|
|
|
};
|
|
|
|
|
2015-05-06 01:45:36 +03:00
|
|
|
// chrome-only, gecko specific extension
|
|
|
|
enum CacheStorageNamespace {
|
|
|
|
"content", "chrome"
|
|
|
|
};
|