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

Unified Diff: Source/core/fetch/FontResource.h

Issue 424723002: Oilpan: Change Persistent members of Resource subclasses to Member. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/core/fetch/DocumentResource.cpp ('k') | Source/core/fetch/FontResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/FontResource.h
diff --git a/Source/core/fetch/FontResource.h b/Source/core/fetch/FontResource.h
index 38fe77a2fda6620f6bdda05921287e597f54baee..103961117ced5f5435871e9f5374bcc924cf1745 100644
--- a/Source/core/fetch/FontResource.h
+++ b/Source/core/fetch/FontResource.h
@@ -47,6 +47,7 @@ public:
FontResource(const ResourceRequest&);
virtual ~FontResource();
+ virtual void trace(Visitor*) OVERRIDE;
virtual void load(ResourceFetcher*, const ResourceLoaderOptions&) OVERRIDE;
@@ -82,7 +83,7 @@ private:
Timer<FontResource> m_fontLoadWaitLimitTimer;
#if ENABLE(SVG_FONTS)
- RefPtrWillBePersistent<Document> m_externalSVGDocument;
+ RefPtrWillBeMember<Document> m_externalSVGDocument;
#endif
friend class MemoryCache;
« no previous file with comments | « Source/core/fetch/DocumentResource.cpp ('k') | Source/core/fetch/FontResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698