Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1515)

Unified Diff: Source/core/page/PageAnimator.h

Issue 369793003: Make the web-animations engine use the passed in blink::WebFrameTime values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixing remaining usages of -1 in the code. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/ScriptedAnimationController.cpp ('k') | Source/core/page/PageAnimator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PageAnimator.h
diff --git a/Source/core/page/PageAnimator.h b/Source/core/page/PageAnimator.h
index 5c8d9e5c240fe776b1aec25fd6f523d2b0f66920..803d27d92bd17f6b3cd8f7c6524d9bb186fcd303 100644
--- a/Source/core/page/PageAnimator.h
+++ b/Source/core/page/PageAnimator.h
@@ -5,6 +5,8 @@
#ifndef PageAnimator_h
#define PageAnimator_h
+#include "public/platform/WebFrameTime.h"
+
namespace WebCore {
class Page;
@@ -14,7 +16,7 @@ public:
explicit PageAnimator(Page*);
void scheduleVisualUpdate();
- void serviceScriptedAnimations(double monotonicAnimationStartTime);
+ void serviceScriptedAnimations(blink::WebFrameTime monotonicAnimationStartTime);
void setAnimationFramePending() { m_animationFramePending = true; }
bool isServicingAnimations() const { return m_servicingAnimations; }
« no previous file with comments | « Source/core/dom/ScriptedAnimationController.cpp ('k') | Source/core/page/PageAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698