Chromium Code Reviews| 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) |