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

Unified Diff: Source/core/fetch/CSSStyleSheetResource.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/CSSStyleSheetResource.h ('k') | Source/core/fetch/DocumentResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/CSSStyleSheetResource.cpp
diff --git a/Source/core/fetch/CSSStyleSheetResource.cpp b/Source/core/fetch/CSSStyleSheetResource.cpp
index 8f16d80268d5cc8fc9b33257924e3f7d6c156958..a7604e7e2efebf6b77cefb10b27e5ee60eccb04b 100644
--- a/Source/core/fetch/CSSStyleSheetResource.cpp
+++ b/Source/core/fetch/CSSStyleSheetResource.cpp
@@ -60,6 +60,12 @@ void CSSStyleSheetResource::dispose()
m_parsedStyleSheetCache.clear();
}
+void CSSStyleSheetResource::trace(Visitor* visitor)
+{
+ visitor->trace(m_parsedStyleSheetCache);
+ StyleSheetResource::trace(visitor);
+}
+
void CSSStyleSheetResource::didAddClient(ResourceClient* c)
{
ASSERT(c->resourceClientType() == StyleSheetResourceClient::expectedType());
« no previous file with comments | « Source/core/fetch/CSSStyleSheetResource.h ('k') | Source/core/fetch/DocumentResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698