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

Unified Diff: modules/cachestorage/CacheQueryOptions.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 | « modules/cachestorage/Cache.idl ('k') | modules/cachestorage/CacheStorage.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/cachestorage/CacheQueryOptions.idl
diff --git a/modules/serviceworkers/QueryParams.idl b/modules/cachestorage/CacheQueryOptions.idl
similarity index 53%
rename from modules/serviceworkers/QueryParams.idl
rename to modules/cachestorage/CacheQueryOptions.idl
index 817aa4b61726a7828e23e24154d94ecbd9f4824e..c86709009c4727e03433d939895c44526f39adf6 100644
--- a/modules/serviceworkers/QueryParams.idl
+++ b/modules/cachestorage/CacheQueryOptions.idl
@@ -3,13 +3,9 @@
// found in the LICENSE file.
// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#cache
-[
- GarbageCollected
-] dictionary QueryParams {
- // FIXME: Specify defaults. https://github.com/slightlyoff/ServiceWorker/issues/466
- boolean ignoreSearch;
- boolean ignoreMethod;
- boolean ignoreVary;
- boolean prefixMatch;
+dictionary CacheQueryOptions {
+ boolean ignoreSearch = false;
+ boolean ignoreMethod = false;
+ boolean ignoreVary = false;
DOMString cacheName;
};
« no previous file with comments | « modules/cachestorage/Cache.idl ('k') | modules/cachestorage/CacheStorage.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698