Chromium Code Reviews

Unified Diff: content/browser/cache_storage/cache_storage.proto

Issue 2416713002: Write out CacheStorageCache size to index file. (Closed)
Patch Set: Fixed leaks in GetAllOriginsUsageWithOldIndex Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: content/browser/cache_storage/cache_storage.proto
diff --git a/content/browser/cache_storage/cache_storage.proto b/content/browser/cache_storage/cache_storage.proto
index 703c022cac2b659be0bc9be9f6fec2a405f3379f..06f1973fff79828404adce8240cf183a423d79a6 100644
--- a/content/browser/cache_storage/cache_storage.proto
+++ b/content/browser/cache_storage/cache_storage.proto
@@ -12,6 +12,7 @@ message CacheStorageIndex {
message Cache {
required string name = 1;
optional string cache_dir = 2;
+ optional int64 size = 3;
}
repeated Cache cache = 1;
optional string origin = 2;

Powered by Google App Engine