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

Unified Diff: content/browser/cache_storage/README.md

Issue 2416713002: Write out CacheStorageCache size to index file. (Closed)
Patch Set: BrowserThread::PostDelayedTask(IO, ...) --> base::ThreadTaskRunnerHandle::Get()->Post* Created 4 years 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/browser/cache_storage/README.md
diff --git a/content/browser/cache_storage/README.md b/content/browser/cache_storage/README.md
index 014b98825348e1787d041e597c3be79dd906dc67..7b3758dab2193227091b2605166083839794ac19 100644
--- a/content/browser/cache_storage/README.md
+++ b/content/browser/cache_storage/README.md
@@ -62,6 +62,13 @@ reference.
3. Owned by `CacheStorage` and deleted either when `CacheStorage` deletes or
when the last `CacheStorageCacheHandle` for the cache is gone.
+### CacheStorageIndex
+1. Manages an ordered collection of metadata
+ (CacheStorageIndex::CacheStorageMetadata) for each CacheStorageCache owned
+ by a given CacheStorage instance.
+2. Is serialized by CacheStorage::CacheLoader (WriteIndex/LoadIndex) as a
+ Protobuf file.
+
### CacheStorageCacheHandle
1. Holds a weak reference to a `CacheStorageCache`.
2. When the last `CacheStorageCacheHandle` to a `CacheStorageCache` is

Powered by Google App Engine
This is Rietveld 408576698