Index: third_party/WebKit/Source/core/page/PageAnimator.cpp |
diff --git a/third_party/WebKit/Source/core/page/PageAnimator.cpp b/third_party/WebKit/Source/core/page/PageAnimator.cpp |
index ba58cfe96a95b9564ed3c8c9fac2ce8c0f6ad45c..92b5e76e6ca23d8ecae900de706fc4903c4e2dfe 100644 |
--- a/third_party/WebKit/Source/core/page/PageAnimator.cpp |
+++ b/third_party/WebKit/Source/core/page/PageAnimator.cpp |
@@ -36,7 +36,6 @@ |
{ |
RefPtrWillBeRawPtr<PageAnimator> protector(this); |
TemporaryChange<bool> servicing(m_servicingAnimations, true); |
- clock().updateTime(monotonicAnimationStartTime); |
WillBeHeapVector<RefPtrWillBeMember<Document>> documents; |
for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) { |
@@ -45,7 +44,7 @@ |
} |
for (auto& document : documents) { |
- DocumentAnimations::updateAnimationTimingForAnimationFrame(*document); |
+ DocumentAnimations::updateAnimationTimingForAnimationFrame(*document, monotonicAnimationStartTime); |
if (document->view()) { |
if (document->view()->shouldThrottleRendering()) |
continue; |