| Index: ash/wm/window_animations_unittest.cc
|
| diff --git a/ash/wm/window_animations_unittest.cc b/ash/wm/window_animations_unittest.cc
|
| index 387f6f9b94da5cf44ceb64727ce5c6fd93b34f69..575e9e25f03d404ced6283fe4be7c36071c33d8a 100644
|
| --- a/ash/wm/window_animations_unittest.cc
|
| +++ b/ash/wm/window_animations_unittest.cc
|
| @@ -25,7 +25,7 @@ class WindowAnimationsTest : public ash::test::AshTestBase {
|
| public:
|
| WindowAnimationsTest() {}
|
|
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| AshTestBase::TearDown();
|
| }
|
|
|
| @@ -48,14 +48,14 @@ class MinimizeAnimationObserver : public ui::LayerAnimationObserver {
|
| protected:
|
| // ui::LayerAnimationObserver:
|
| virtual void OnLayerAnimationScheduled(
|
| - ui::LayerAnimationSequence* sequence) OVERRIDE {
|
| + ui::LayerAnimationSequence* sequence) override {
|
| duration_ = animator_->GetTransitionDuration();
|
| animator_->RemoveObserver(this);
|
| }
|
| virtual void OnLayerAnimationEnded(
|
| - ui::LayerAnimationSequence* sequence) OVERRIDE {}
|
| + ui::LayerAnimationSequence* sequence) override {}
|
| virtual void OnLayerAnimationAborted(
|
| - ui::LayerAnimationSequence* sequence) OVERRIDE {}
|
| + ui::LayerAnimationSequence* sequence) override {}
|
|
|
| private:
|
| ui::LayerAnimator* animator_;
|
|
|