| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/views/animation/test/ink_drop_animation_test_api.h" | 5 #include "ui/views/animation/test/ink_drop_ripple_test_api.h" |
| 6 | 6 |
| 7 namespace views { | 7 namespace views { |
| 8 namespace test { | 8 namespace test { |
| 9 | 9 |
| 10 InkDropAnimationTestApi::InkDropAnimationTestApi( | 10 InkDropRippleTestApi::InkDropRippleTestApi(InkDropRipple* ink_drop_ripple) |
| 11 InkDropAnimation* ink_drop_animation) | |
| 12 : ui::test::MultiLayerAnimatorTestController(this), | 11 : ui::test::MultiLayerAnimatorTestController(this), |
| 13 ink_drop_animation_(ink_drop_animation) {} | 12 ink_drop_ripple_(ink_drop_ripple) {} |
| 14 | 13 |
| 15 InkDropAnimationTestApi::~InkDropAnimationTestApi() {} | 14 InkDropRippleTestApi::~InkDropRippleTestApi() {} |
| 16 | 15 |
| 17 std::vector<ui::LayerAnimator*> InkDropAnimationTestApi::GetLayerAnimators() { | 16 std::vector<ui::LayerAnimator*> InkDropRippleTestApi::GetLayerAnimators() { |
| 18 return std::vector<ui::LayerAnimator*>(); | 17 return std::vector<ui::LayerAnimator*>(); |
| 19 } | 18 } |
| 20 | 19 |
| 21 } // namespace test | 20 } // namespace test |
| 22 } // namespace views | 21 } // namespace views |
| OLD | NEW |