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

Unified Diff: Source/core/css/CSSFilterRule.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: Keep the size assertion turned on. 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/CSSFilterRule.cpp
diff --git a/Source/core/css/CSSFilterRule.cpp b/Source/core/css/CSSFilterRule.cpp
index 0ea5f177a5d34f59c186f8027f7b8a4665a8f35a..873d87de44c68e7e4973f31df7c591453d50515b 100644
--- a/Source/core/css/CSSFilterRule.cpp
+++ b/Source/core/css/CSSFilterRule.cpp
@@ -82,5 +82,11 @@ void CSSFilterRule::reattach(StyleRuleBase* rule)
m_propertiesCSSOMWrapper->reattach(m_filterRule->mutableProperties());
}
+void CSSFilterRule::trace(Visitor* visitor)
+{
+ CSSRule::trace(visitor);
wibling-chromium 2014/03/03 10:08:40 NIT: Don't we tend to do this last to make it a ta
haraken 2014/03/03 10:39:35 Nit: I want to know this. We sometimes write Paren
Mads Ager (chromium) 2014/03/03 10:40:40 I honestly don't care as long as the call is there
tkent 2014/03/03 23:55:55 As wibling wrote, tail calls are better in general
+ visitor->trace(m_filterRule);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698