Chromium Code Reviews| Index: Source/core/page/PageAnimator.cpp |
| diff --git a/Source/core/page/PageAnimator.cpp b/Source/core/page/PageAnimator.cpp |
| index 1998a8e4ad25dcdb70315e60f5b5aa47dc53c28a..8bca069bd0b727cada442ae55655b1278ca97414 100644 |
| --- a/Source/core/page/PageAnimator.cpp |
| +++ b/Source/core/page/PageAnimator.cpp |
| @@ -12,6 +12,7 @@ |
| #include "core/page/Chrome.h" |
| #include "core/page/ChromeClient.h" |
| #include "core/page/Page.h" |
| +#include "core/svg/SVGDocumentExtensions.h" |
| namespace WebCore { |
| @@ -30,6 +31,7 @@ void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime) |
| for (RefPtr<LocalFrame> frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) { |
| frame->view()->serviceScrollAnimations(); |
| DocumentAnimations::updateAnimationTimingForAnimationFrame(*frame->document(), monotonicAnimationStartTime); |
| + SVGDocumentExtensions::serviceOnAnimationFrame(*frame->document(), monotonicAnimationStartTime); |
|
dstockwell
2014/03/04 01:19:04
We updated the naming in DocumentAnimations recent
fs
2014/03/04 10:28:19
I noticed this, and for a while considered followi
|
| } |
| Vector<RefPtr<Document> > documents; |