Index: third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl |
diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl |
index dc7562da004a1499637fed7c6727132209c53df2..389a314907c7bcd3f3f1d3066a2553ebd381c22c 100644 |
--- a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl |
+++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl |
@@ -6,9 +6,9 @@ |
[ |
Exposed=(Window,Worker), |
] interface CacheStorage { |
+ [CallWith=ScriptState, RaisesException] Promise<any> match(RequestInfo request, optional CacheQueryOptions options); |
[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); |
}; |