| 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 70d3b0e10f8e0721db09fbfec65815689b7006fb..ba8e2c9ad497cfdc4f565ecdcb695df38f23fd14 100644
|
| --- a/ui/gfx/animation/animation_container_unittest.cc
|
| +++ b/ui/gfx/animation/animation_container_unittest.cc
|
| @@ -26,12 +26,12 @@ class FakeAnimationContainerObserver : public AnimationContainerObserver {
|
|
|
| private:
|
| virtual void AnimationContainerProgressed(
|
| - AnimationContainer* container) OVERRIDE {
|
| + AnimationContainer* container) override {
|
| progressed_count_++;
|
| }
|
|
|
| // Invoked when no more animations are being managed by this container.
|
| - virtual void AnimationContainerEmpty(AnimationContainer* container) OVERRIDE {
|
| + virtual void AnimationContainerEmpty(AnimationContainer* container) override {
|
| empty_ = true;
|
| }
|
|
|
| @@ -47,7 +47,7 @@ class TestAnimation : public LinearAnimation {
|
| : LinearAnimation(20, 20, delegate) {
|
| }
|
|
|
| - virtual void AnimateToState(double state) OVERRIDE {
|
| + virtual void AnimateToState(double state) override {
|
| }
|
|
|
| private:
|
|
|