| Index: cc/animation/animation.h
|
| diff --git a/cc/animation/animation.h b/cc/animation/animation.h
|
| index 02bb2c6013ce967f90122575a05bb6484b45b4a1..508651d5558cd6b66325b1e6cb37b80300391774 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_;
|
|
|
|
|