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

Unified Diff: sky/engine/core/fetch/MemoryCache.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/fetch/FontResource.cpp ('k') | sky/engine/core/fetch/MemoryCache.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/fetch/MemoryCache.h
diff --git a/sky/engine/core/fetch/MemoryCache.h b/sky/engine/core/fetch/MemoryCache.h
index b8a0352896d1d6d5a7cf3f150013ce97a186feca..be81f341a43d072b3372bf5198d9f08c4ecd44ed 100644
--- a/sky/engine/core/fetch/MemoryCache.h
+++ b/sky/engine/core/fetch/MemoryCache.h
@@ -77,7 +77,6 @@ enum UpdateReason {
class MemoryCacheEntry final {
public:
static PassOwnPtr<MemoryCacheEntry> create(Resource* resource) { return adoptPtr(new MemoryCacheEntry(resource)); }
- void trace(Visitor*);
ResourcePtr<Resource> m_resource;
bool m_inLiveDecodedResourcesList;
@@ -115,7 +114,6 @@ public:
RawPtr<MemoryCacheEntry> m_tail;
MemoryCacheLRUList() : m_head(nullptr), m_tail(nullptr) { }
- void trace(Visitor*);
};
}
@@ -129,7 +127,6 @@ class MemoryCache final {
public:
static PassOwnPtr<MemoryCache> create();
~MemoryCache();
- void trace(Visitor*);
struct TypeStatistic {
int count;
« no previous file with comments | « sky/engine/core/fetch/FontResource.cpp ('k') | sky/engine/core/fetch/MemoryCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698