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

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

Issue 709203002: Remove more 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/events/GenericEventQueue.h ('k') | sky/engine/core/fetch/Resource.h » ('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 6d19b4a893d1a1fc4e7e2e4f47bf47aa3ac6537d..b8a0352896d1d6d5a7cf3f150013ce97a186feca 100644
--- a/sky/engine/core/fetch/MemoryCache.h
+++ b/sky/engine/core/fetch/MemoryCache.h
@@ -74,7 +74,7 @@ enum UpdateReason {
// MemoryCacheEntry class is used only in MemoryCache class, but we don't make
// MemoryCacheEntry class an inner class of MemoryCache because of dependency
// from MemoryCacheLRUList.
-class MemoryCacheEntry final : public DummyBase<MemoryCacheEntry> {
+class MemoryCacheEntry final {
public:
static PassOwnPtr<MemoryCacheEntry> create(Resource* resource) { return adoptPtr(new MemoryCacheEntry(resource)); }
void trace(Visitor*);
@@ -124,8 +124,8 @@ WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::MemoryCacheLRUList);
namespace blink {
-class MemoryCache final : public DummyBase<MemoryCache> {
- WTF_MAKE_NONCOPYABLE(MemoryCache); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+class MemoryCache final {
+ WTF_MAKE_NONCOPYABLE(MemoryCache); WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<MemoryCache> create();
~MemoryCache();
« no previous file with comments | « sky/engine/core/events/GenericEventQueue.h ('k') | sky/engine/core/fetch/Resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698