Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl

Issue 1898413002: CacheStorage: Sync up IDL with the cache storage spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/cachestorage/Cache.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « third_party/WebKit/Source/modules/cachestorage/Cache.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698