| Index: Source/core/dom/ScriptedAnimationController.h
|
| diff --git a/Source/core/dom/ScriptedAnimationController.h b/Source/core/dom/ScriptedAnimationController.h
|
| index 751deee8f0b02a6e2a01e9a84fad8d8244b3726d..b72b32095d5627c477f0953d97a3c4f4f03e6898 100644
|
| --- a/Source/core/dom/ScriptedAnimationController.h
|
| +++ b/Source/core/dom/ScriptedAnimationController.h
|
| @@ -27,6 +27,7 @@
|
| #define ScriptedAnimationController_h
|
|
|
| #include "platform/heap/Handle.h"
|
| +#include "public/platform/WebFrameTime.h"
|
| #include "wtf/ListHashSet.h"
|
| #include "wtf/RefCounted.h"
|
| #include "wtf/RefPtr.h"
|
| @@ -55,7 +56,7 @@ public:
|
|
|
| int registerCallback(PassOwnPtr<RequestAnimationFrameCallback>);
|
| void cancelCallback(CallbackId);
|
| - void serviceScriptedAnimations(double monotonicTimeNow);
|
| + void serviceScriptedAnimations(blink::WebFrameTime);
|
|
|
| void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
|
| void enqueuePerFrameEvent(PassRefPtrWillBeRawPtr<Event>);
|
| @@ -70,7 +71,7 @@ private:
|
| void scheduleAnimationIfNeeded();
|
|
|
| void dispatchEvents();
|
| - void executeCallbacks(double monotonicTimeNow);
|
| + void executeCallbacks(blink::WebFrameTime monotonicTimeNow);
|
| void callMediaQueryListListeners();
|
|
|
| typedef Vector<OwnPtr<RequestAnimationFrameCallback> > CallbackList;
|
|
|