| Index: ui/base/animation/animation.h
|
| diff --git a/ui/base/animation/animation.h b/ui/base/animation/animation.h
|
| index 257e99b438930bc1a3695c14bcf9f1fb4ba1ce28..9675e09a11ba53021b019ce6f3ad24d3117f3a74 100644
|
| --- a/ui/base/animation/animation.h
|
| +++ b/ui/base/animation/animation.h
|
| @@ -58,6 +58,7 @@ class UI_EXPORT Animation : public AnimationContainerElement {
|
| bool is_animating() const { return is_animating_; }
|
|
|
| base::TimeDelta timer_interval() const { return timer_interval_; }
|
| + void set_timer_interval(base::TimeDelta time) { timer_interval_ = time; }
|
|
|
| // Returns true if rich animations should be rendered.
|
| // Looks at session type (e.g. remote desktop) and accessibility settings
|
| @@ -88,7 +89,7 @@ class UI_EXPORT Animation : public AnimationContainerElement {
|
|
|
| private:
|
| // Interval for the animation.
|
| - const base::TimeDelta timer_interval_;
|
| + base::TimeDelta timer_interval_;
|
|
|
| // If true we're running.
|
| bool is_animating_;
|
|
|