| Index: ui/gfx/animation/animation_container_unittest.cc
|
| diff --git a/ui/gfx/animation/animation_container_unittest.cc b/ui/gfx/animation/animation_container_unittest.cc
|
| index ba8e2c9ad497cfdc4f565ecdcb695df38f23fd14..c97485a8d47fbe344f22bd7876eac597b4189f19 100644
|
| --- a/ui/gfx/animation/animation_container_unittest.cc
|
| +++ b/ui/gfx/animation/animation_container_unittest.cc
|
| @@ -25,13 +25,12 @@ class FakeAnimationContainerObserver : public AnimationContainerObserver {
|
| bool empty() const { return empty_; }
|
|
|
| private:
|
| - virtual void AnimationContainerProgressed(
|
| - AnimationContainer* container) override {
|
| + void AnimationContainerProgressed(AnimationContainer* container) override {
|
| progressed_count_++;
|
| }
|
|
|
| // Invoked when no more animations are being managed by this container.
|
| - virtual void AnimationContainerEmpty(AnimationContainer* container) override {
|
| + void AnimationContainerEmpty(AnimationContainer* container) override {
|
| empty_ = true;
|
| }
|
|
|
| @@ -47,8 +46,7 @@ class TestAnimation : public LinearAnimation {
|
| : LinearAnimation(20, 20, delegate) {
|
| }
|
|
|
| - virtual void AnimateToState(double state) override {
|
| - }
|
| + void AnimateToState(double state) override {}
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(TestAnimation);
|
|
|