Chromium Code Reviews| Index: Source/core/fetch/MemoryCache.h |
| diff --git a/Source/core/fetch/MemoryCache.h b/Source/core/fetch/MemoryCache.h |
| index f184080195b44d4f0bd5c6a193942f90ef820fff..704add194bbfbb987de2df52016794a3baad1944 100644 |
| --- a/Source/core/fetch/MemoryCache.h |
| +++ b/Source/core/fetch/MemoryCache.h |
| @@ -234,10 +234,12 @@ private: |
| // Calls to put the cached resource into and out of LRU lists. |
| void insertInLRUList(MemoryCacheEntry*, MemoryCacheLRUList*); |
| void removeFromLRUList(MemoryCacheEntry*, MemoryCacheLRUList*); |
| + bool containsInLRUList(MemoryCacheEntry*, MemoryCacheLRUList*); |
|
Mike West
2014/10/16 06:34:46
Nit: Either "containedInLRUList" or "LRUListContai
nhiroki
2014/10/16 07:37:54
Done.
|
| // Track decoded resources that are in the cache and referenced by a Web page. |
| void insertInLiveDecodedResourcesList(MemoryCacheEntry*); |
| void removeFromLiveDecodedResourcesList(MemoryCacheEntry*); |
| + bool containsInLiveDecodedResourcesList(MemoryCacheEntry*); |
|
Mike West
2014/10/16 06:34:46
Nit: Same comment.
nhiroki
2014/10/16 07:37:54
Done.
|
| size_t liveCapacity() const; |
| size_t deadCapacity() const; |