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

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

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/FontResource.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/FontResource.cpp
diff --git a/Source/core/fetch/FontResource.cpp b/Source/core/fetch/FontResource.cpp
index 7ad0f3b7bfebde0c03a83c5bd9c034f4f8b9e7a1..52ab3a1a1157bced05ad972bd5de4a3eb810c12d 100644
--- a/Source/core/fetch/FontResource.cpp
+++ b/Source/core/fetch/FontResource.cpp
@@ -87,6 +87,14 @@ FontResource::~FontResource()
{
}
+void FontResource::trace(Visitor* visitor)
+{
+#if ENABLE(SVG_FONTS)
+ visitor->trace(m_externalSVGDocument);
+#endif
+ Resource::trace(visitor);
+}
+
void FontResource::load(ResourceFetcher*, const ResourceLoaderOptions& options)
{
// Don't load the file yet. Wait for an access before triggering the load.
« no previous file with comments | « Source/core/fetch/FontResource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698