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

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

Issue 953693002: InlinedVisitor: Migrate css to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/CSSKeyframesRule.cpp
diff --git a/Source/core/css/CSSKeyframesRule.cpp b/Source/core/css/CSSKeyframesRule.cpp
index 61b28ce75e8079dcedba49453149e13ae9b1ffa5..ff62d0468d3bbe44ca4d68f559d8a0601d10ca04 100644
--- a/Source/core/css/CSSKeyframesRule.cpp
+++ b/Source/core/css/CSSKeyframesRule.cpp
@@ -85,7 +85,7 @@ int StyleRuleKeyframes::findKeyframeIndex(const String& key) const
return -1;
}
-void StyleRuleKeyframes::traceAfterDispatch(Visitor* visitor)
+DEFINE_TRACE_AFTER_DISPATCH(StyleRuleKeyframes)
{
visitor->trace(m_keyframes);
StyleRuleBase::traceAfterDispatch(visitor);
@@ -208,7 +208,7 @@ void CSSKeyframesRule::reattach(StyleRuleBase* rule)
m_keyframesRule = toStyleRuleKeyframes(rule);
}
-void CSSKeyframesRule::trace(Visitor* visitor)
+DEFINE_TRACE(CSSKeyframesRule)
{
CSSRule::trace(visitor);
haraken 2015/02/24 09:08:52 Make this a tail call.
#if ENABLE(OILPAN)

Powered by Google App Engine
This is Rietveld 408576698