Index: third_party/WebKit/Source/core/animation/AnimationTimeline.cpp |
diff --git a/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp b/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp |
index b2c2c6af551f60d2137b5afc875f686e7bd461d3..52101b6d4837401a7c72634687d58b1e70610be3 100644 |
--- a/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp |
+++ b/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp |
@@ -331,10 +331,10 @@ double AnimationTimeline::playbackRate() const |
return m_playbackRate; |
} |
-void AnimationTimeline::invalidateKeyframeEffects() |
+void AnimationTimeline::invalidateKeyframeEffects(const TreeScope& treeScope) |
{ |
for (const auto& animation : m_animations) |
- animation->invalidateKeyframeEffect(); |
+ animation->invalidateKeyframeEffect(treeScope); |
} |
DEFINE_TRACE(AnimationTimeline) |