| Index: ui/gfx/animation/animation.h
|
| diff --git a/ui/gfx/animation/animation.h b/ui/gfx/animation/animation.h
|
| index e98f506737ea1ac966a4532e7fc806bccbd543e2..81e8e2bf20c3015b89496113959a92d2e28690d8 100644
|
| --- a/ui/gfx/animation/animation.h
|
| +++ b/ui/gfx/animation/animation.h
|
| @@ -28,7 +28,7 @@ class AnimationDelegate;
|
| class GFX_EXPORT Animation : public AnimationContainerElement {
|
| public:
|
| explicit Animation(base::TimeDelta timer_interval);
|
| - virtual ~Animation();
|
| + ~Animation() override;
|
|
|
| // Starts the animation. Does nothing if the animation is already running.
|
| void Start();
|
| @@ -81,9 +81,9 @@ class GFX_EXPORT Animation : public AnimationContainerElement {
|
| AnimationDelegate* delegate() { return delegate_; }
|
|
|
| // AnimationContainer::Element overrides
|
| - virtual void SetStartTime(base::TimeTicks start_time) override;
|
| + void SetStartTime(base::TimeTicks start_time) override;
|
| virtual void Step(base::TimeTicks time_now) = 0;
|
| - virtual base::TimeDelta GetTimerInterval() const override;
|
| + base::TimeDelta GetTimerInterval() const override;
|
|
|
| private:
|
| // Interval for the animation.
|
|
|