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

Unified Diff: Source/modules/cachestorage/Cache.idl

Issue 1124403005: CacheStorage: Implement Cache.addAll() behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
Index: Source/modules/cachestorage/Cache.idl
diff --git a/Source/modules/cachestorage/Cache.idl b/Source/modules/cachestorage/Cache.idl
index c6074a9be319424f3efa1dc4dfc4fe730168ec10..56e24bf233f8eb53817d7f7b0671e5b23203e1e5 100644
--- a/Source/modules/cachestorage/Cache.idl
+++ b/Source/modules/cachestorage/Cache.idl
@@ -17,10 +17,7 @@
// [CallWith=ScriptState, RaisesException] Promise<sequence<Response>> matchAll(RequestInfo request, optional CacheQueryOptions options);
[CallWith=ScriptState, RaisesException] Promise<void> add(RequestInfo request);
-
- // FIXME: Implement addAll(): http://crbug.com/427652
- // [CallWith=ScriptState] Promise<void> addAll(sequence<RequestInfo> requests);
-
+ [CallWith=ScriptState, RaisesException] Promise<void> addAll(sequence<RequestInfo> requests);
[CallWith=ScriptState, RaisesException] Promise<void> put(RequestInfo request, Response response);
[CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] Promise<boolean> delete(RequestInfo request, optional CacheQueryOptions options);
[CallWith=ScriptState, RaisesException] Promise<sequence<Response>> keys(optional RequestInfo request, optional CacheQueryOptions options);
« Source/modules/cachestorage/Cache.cpp ('K') | « Source/modules/cachestorage/Cache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698