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; |
}; |