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

Unified Diff: Source/WebCore/platform/ActivePlatformGestureAnimation.h

Issue 9931004: Merge 112364 - [chromium] Transfer wheel fling via WebCompositorInputHandlerClient (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 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/WebCore/ChangeLog ('k') | Source/WebCore/platform/ActivePlatformGestureAnimation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/ActivePlatformGestureAnimation.h
===================================================================
--- Source/WebCore/platform/ActivePlatformGestureAnimation.h (revision 112613)
+++ Source/WebCore/platform/ActivePlatformGestureAnimation.h (working copy)
@@ -43,6 +43,7 @@
WTF_MAKE_NONCOPYABLE(ActivePlatformGestureAnimation);
public:
static PassOwnPtr<ActivePlatformGestureAnimation> create(PassOwnPtr<PlatformGestureCurve>, PlatformGestureCurveTarget*);
+ static PassOwnPtr<ActivePlatformGestureAnimation> create(PassOwnPtr<PlatformGestureCurve>, PlatformGestureCurveTarget*, double startTime);
~ActivePlatformGestureAnimation();
bool animate(double time);
@@ -50,6 +51,7 @@
private:
// Assumes a valid PlatformGestureCurveTarget that outlives the animation.
ActivePlatformGestureAnimation(PassOwnPtr<PlatformGestureCurve>, PlatformGestureCurveTarget*);
+ ActivePlatformGestureAnimation(PassOwnPtr<PlatformGestureCurve>, PlatformGestureCurveTarget*, double startTime);
double m_startTime;
bool m_waitingForFirstTick;
« no previous file with comments | « Source/WebCore/ChangeLog ('k') | Source/WebCore/platform/ActivePlatformGestureAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698