| Index: ash/test/shelf_view_test_api.cc
|
| diff --git a/ash/test/shelf_view_test_api.cc b/ash/test/shelf_view_test_api.cc
|
| index b33b7492657ce2e6cbfaba219268838ed5be9075..b829b87d54617551205bcffc4f57a16511651761 100644
|
| --- a/ash/test/shelf_view_test_api.cc
|
| +++ b/ash/test/shelf_view_test_api.cc
|
| @@ -19,12 +19,11 @@ namespace {
|
| class TestAPIAnimationObserver : public views::BoundsAnimatorObserver {
|
| public:
|
| TestAPIAnimationObserver() {}
|
| - virtual ~TestAPIAnimationObserver() {}
|
| + ~TestAPIAnimationObserver() override {}
|
|
|
| // views::BoundsAnimatorObserver overrides:
|
| - virtual void OnBoundsAnimatorProgressed(
|
| - views::BoundsAnimator* animator) override {}
|
| - virtual void OnBoundsAnimatorDone(views::BoundsAnimator* animator) override {
|
| + void OnBoundsAnimatorProgressed(views::BoundsAnimator* animator) override {}
|
| + void OnBoundsAnimatorDone(views::BoundsAnimator* animator) override {
|
| base::MessageLoop::current()->Quit();
|
| }
|
|
|
|
|