summaryrefslogtreecommitdiffstats
path: root/cc/animation/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/animation/animation.h')
-rw-r--r--cc/animation/animation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/animation/animation.h b/cc/animation/animation.h
index 02bb2c6..508651d 100644
--- a/cc/animation/animation.h
+++ b/cc/animation/animation.h
@@ -68,8 +68,8 @@ class CC_EXPORT Animation {
// This is the number of times that the animation will play. If this
// value is zero the animation will not play. If it is negative, then
// the animation will loop indefinitely.
- int iterations() const { return iterations_; }
- void set_iterations(int n) { iterations_ = n; }
+ double iterations() const { return iterations_; }
+ void set_iterations(double n) { iterations_ = n; }
base::TimeTicks start_time() const { return start_time_; }
@@ -161,7 +161,7 @@ class CC_EXPORT Animation {
TargetProperty target_property_;
RunState run_state_;
- int iterations_;
+ double iterations_;
base::TimeTicks start_time_;
Direction direction_;