| Index: app/animation.cc
|
| diff --git a/app/animation.cc b/app/animation.cc
|
| index 28932c9fc311f98565f1f682acb445c31585d112..ff2011706df42cb22fa8a354b02611ce77d8e565 100644
|
| --- a/app/animation.cc
|
| +++ b/app/animation.cc
|
| @@ -107,6 +107,14 @@ bool Animation::ShouldRenderRichAnimation() {
|
| return true;
|
| }
|
|
|
| +bool Animation::ShouldSendCanceledFromStop() {
|
| + return false;
|
| +}
|
| +
|
| void Animation::SetStartTime(base::TimeTicks start_time) {
|
| start_time_ = start_time;
|
| }
|
| +
|
| +base::TimeDelta Animation::GetTimerInterval() const {
|
| + return timer_interval_;
|
| +}
|
|
|