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

Unified Diff: Source/core/css/CSSPageRule.cpp

Issue 177423010: Oilpan: Remove Persistent handles from heap allocated CSSRule objects and fix finalization of CSSKe… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/css/CSSPageRule.cpp
diff --git a/Source/core/css/CSSPageRule.cpp b/Source/core/css/CSSPageRule.cpp
index ffe63377aebb6d225cb89a848fdf3bd403c0f5a1..46ab342d1f4378d958c57c92a475d4ed04cb8bdf 100644
--- a/Source/core/css/CSSPageRule.cpp
+++ b/Source/core/css/CSSPageRule.cpp
@@ -101,4 +101,10 @@ void CSSPageRule::reattach(StyleRuleBase* rule)
m_propertiesCSSOMWrapper->reattach(m_pageRule->mutableProperties());
}
+void CSSPageRule::trace(Visitor* visitor)
+{
+ visitor->trace(m_pageRule);
+ CSSRule::trace(visitor);
Erik Corry 2014/03/03 09:44:29 I think mostly we have done the superclass call fi
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698