| Index: Source/modules/cachestorage/CacheStorage.idl
|
| diff --git a/Source/modules/cachestorage/CacheStorage.idl b/Source/modules/cachestorage/CacheStorage.idl
|
| index d0924adc7a413e442882887ba5f396e9283bca04..7eb99b5aaa06eda5d885cf72e9fe3010f2cc9108 100644
|
| --- a/Source/modules/cachestorage/CacheStorage.idl
|
| +++ b/Source/modules/cachestorage/CacheStorage.idl
|
| @@ -8,9 +8,9 @@
|
| Exposed=(Window,Worker),
|
| TypeChecking=Interface,
|
| ] interface CacheStorage {
|
| - [CallWith=ScriptState] Promise<boolean> has(DOMString cacheName);
|
| - [CallWith=ScriptState] Promise<Cache> open(DOMString cacheName);
|
| - [CallWith=ScriptState, ImplementedAs=deleteFunction] Promise<boolean> delete(DOMString cacheName);
|
| - [CallWith=ScriptState] Promise<sequence<DOMString>> keys();
|
| + [CallWith=ScriptState, RaisesException] Promise<boolean> has(DOMString cacheName);
|
| + [CallWith=ScriptState, RaisesException] Promise<Cache> open(DOMString cacheName);
|
| + [CallWith=ScriptState, RaisesException, ImplementedAs=deleteFunction] Promise<boolean> delete(DOMString cacheName);
|
| + [CallWith=ScriptState, RaisesException] Promise<sequence<DOMString>> keys();
|
| [CallWith=ScriptState, RaisesException] Promise<Response> match(RequestInfo request, optional CacheQueryOptions options);
|
| };
|
|
|