Index: app/animation.h |
diff --git a/app/animation.h b/app/animation.h |
index 87dc43ff18c082e86e193ca5dcd1f894b52f64c6..5affe615cbe4b20368728cca6cabe02a8d7ad80b 100644 |
--- a/app/animation.h |
+++ b/app/animation.h |
@@ -72,7 +72,7 @@ class Animation : public AnimationContainerElement { |
// Invoked from stop to determine if cancel should be invoked. If this returns |
// true the delegate is notified the animation was canceled, otherwise the |
// delegate is notified the animation stopped. |
- virtual bool ShouldSendCanceledFromStop() { return false; } |
+ virtual bool ShouldSendCanceledFromStop(); |
AnimationContainer* container() { return container_.get(); } |
base::TimeTicks start_time() const { return start_time_; } |
@@ -81,7 +81,7 @@ class Animation : public AnimationContainerElement { |
// AnimationContainer::Element overrides |
virtual void SetStartTime(base::TimeTicks start_time); |
virtual void Step(base::TimeTicks time_now) = 0; |
- virtual base::TimeDelta GetTimerInterval() const { return timer_interval_; } |
+ virtual base::TimeDelta GetTimerInterval() const; |
private: |
// Interval for the animation. |