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

Unified Diff: content/common/cache_storage/cache_storage_types.h

Issue 2242883002: [CacheStorage] Use QueryCache everywhere (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from PS9 Created 4 years, 4 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: content/common/cache_storage/cache_storage_types.h
diff --git a/content/common/cache_storage/cache_storage_types.h b/content/common/cache_storage/cache_storage_types.h
index 3db2ab0550fa4aee8d87f9c65f49f10d0f06eefe..215c0ead7ab9e666dfc0a79618ed330a311d9bcd 100644
--- a/content/common/cache_storage/cache_storage_types.h
+++ b/content/common/cache_storage/cache_storage_types.h
@@ -21,9 +21,9 @@ namespace content {
struct CONTENT_EXPORT CacheStorageCacheQueryParams {
CacheStorageCacheQueryParams();
- bool ignore_search;
- bool ignore_method;
- bool ignore_vary;
+ bool ignore_search = false;
+ bool ignore_method = false;
+ bool ignore_vary = false;
base::NullableString16 cache_name;
};

Powered by Google App Engine
This is Rietveld 408576698