| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 48013d58a1922b32848c0cae2a650a12565899e0..9d82ef1c40670cb444e293543ca805b51c3acbad 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -5201,11 +5201,11 @@ void Document::cancelAnimationFrame(int id)
|
| m_scriptedAnimationController->cancelCallback(id);
|
| }
|
|
|
| -void Document::serviceScriptedAnimations(double monotonicAnimationStartTime)
|
| +void Document::serviceScriptedAnimations(blink::WebFrameTime frameTime)
|
| {
|
| if (!m_scriptedAnimationController)
|
| return;
|
| - m_scriptedAnimationController->serviceScriptedAnimations(monotonicAnimationStartTime);
|
| + m_scriptedAnimationController->serviceScriptedAnimations(frameTime);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<Touch> Document::createTouch(LocalDOMWindow* window, EventTarget* target, int identifier, double pageX, double pageY, double screenX, double screenY, double radiusX, double radiusY, float rotationAngle, float force) const
|
|
|