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

Unified Diff: third_party/WebKit/Source/core/fetch/MemoryCache.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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: third_party/WebKit/Source/core/fetch/MemoryCache.h
diff --git a/third_party/WebKit/Source/core/fetch/MemoryCache.h b/third_party/WebKit/Source/core/fetch/MemoryCache.h
index 987666f06a05396f5708b66687cb3e08f9e9c361..071484193c5730aac984764c81544c9ca8c92605 100644
--- a/third_party/WebKit/Source/core/fetch/MemoryCache.h
+++ b/third_party/WebKit/Source/core/fetch/MemoryCache.h
@@ -83,7 +83,7 @@ public:
DECLARE_TRACE();
void dispose();
- RefPtrWillBeMember<Resource> m_resource;
+ Member<Resource> m_resource;
bool m_inLiveDecodedResourcesList;
unsigned m_accessCount;
MemoryCacheLiveResourcePriority m_liveResourcePriority;
@@ -175,7 +175,7 @@ public:
Resource* resourceForURL(const KURL&);
Resource* resourceForURL(const KURL&, const String& cacheIdentifier);
- WillBeHeapVector<RawPtrWillBeMember<Resource>> resourcesForURL(const KURL&);
+ HeapVector<Member<Resource>> resourcesForURL(const KURL&);
void add(Resource*);
void remove(Resource*);

Powered by Google App Engine
This is Rietveld 408576698