summaryrefslogtreecommitdiffstats
path: root/app/animation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'app/animation.cc')
-rw-r--r--app/animation.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/animation.cc b/app/animation.cc
index 28932c9..ff20117 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_;
+}