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

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

Issue 7590014: Merge 92002 - Scroll animation refinements. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 4 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 | « no previous file | Source/WebCore/platform/ScrollAnimatorNone.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/ScrollAnimatorNone.h
===================================================================
--- Source/WebCore/platform/ScrollAnimatorNone.h (revision 92725)
+++ Source/WebCore/platform/ScrollAnimatorNone.h (working copy)
@@ -59,13 +59,14 @@
struct Parameters {
Parameters();
- Parameters(bool, double, Curve, double, Curve, double);
+ Parameters(bool isEnabled, double animationTime, double repeatMinimumSustainTime, Curve attackCurve, double attackTime, Curve releaseCurve, double releaseTime);
// Note that the times can be overspecified such that releaseTime or releaseTime and attackTime are greater
// than animationTime. animationTime takes priority over releaseTime, capping it. attackTime is capped at
// whatever time remains, or zero if none.
bool m_isEnabled;
double m_animationTime;
+ double m_repeatMinimumSustainTime;
Curve m_attackCurve;
double m_attackTime;
« no previous file with comments | « no previous file | Source/WebCore/platform/ScrollAnimatorNone.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698