| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ui/views/animation/test/ink_drop_animation_test_api.h" | |
| 6 | |
| 7 namespace views { | |
| 8 namespace test { | |
| 9 | |
| 10 InkDropAnimationTestApi::InkDropAnimationTestApi( | |
| 11 InkDropAnimation* ink_drop_animation) | |
| 12 : ui::test::MultiLayerAnimatorTestController(this), | |
| 13 ink_drop_animation_(ink_drop_animation) {} | |
| 14 | |
| 15 InkDropAnimationTestApi::~InkDropAnimationTestApi() {} | |
| 16 | |
| 17 std::vector<ui::LayerAnimator*> InkDropAnimationTestApi::GetLayerAnimators() { | |
| 18 return std::vector<ui::LayerAnimator*>(); | |
| 19 } | |
| 20 | |
| 21 } // namespace test | |
| 22 } // namespace views | |
| OLD | NEW |