Index: ui/views/animation/bounds_animator_unittest.cc |
diff --git a/ui/views/animation/bounds_animator_unittest.cc b/ui/views/animation/bounds_animator_unittest.cc |
index 6294d8a5912367c78a3c65f1432e4eb159a25348..b8f62a2f7ae359e6774a6c35ac156881effb66fc 100644 |
--- a/ui/views/animation/bounds_animator_unittest.cc |
+++ b/ui/views/animation/bounds_animator_unittest.cc |
@@ -22,7 +22,7 @@ class TestBoundsAnimator : public BoundsAnimator { |
} |
protected: |
- virtual SlideAnimation* CreateAnimation() OVERRIDE { |
+ virtual SlideAnimation* CreateAnimation() override { |
SlideAnimation* animation = BoundsAnimator::CreateAnimation(); |
animation->SetSlideDuration(10); |
return animation; |
@@ -53,7 +53,7 @@ class OwnedDelegate : public gfx::AnimationDelegate { |
} |
// Overridden from gfx::AnimationDelegate: |
- virtual void AnimationCanceled(const Animation* animation) OVERRIDE { |
+ virtual void AnimationCanceled(const Animation* animation) override { |
canceled_ = true; |
} |
@@ -72,7 +72,7 @@ class TestView : public View { |
public: |
TestView() {} |
- virtual void SchedulePaintInRect(const gfx::Rect& r) OVERRIDE { |
+ virtual void SchedulePaintInRect(const gfx::Rect& r) override { |
if (dirty_rect_.IsEmpty()) |
dirty_rect_ = r; |
else |