| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 #ifndef UI_COMPOSITOR_TEST_MULTI_LAYER_ANIMATOR_TEST_CONTROLLER_DELEGATE_H_ |
| 6 #define UI_COMPOSITOR_TEST_MULTI_LAYER_ANIMATOR_TEST_CONTROLLER_DELEGATE_H_ |
| 7 |
| 8 #include <vector> |
| 9 |
| 10 #include "base/macros.h" |
| 11 #include "base/time/time.h" |
| 12 |
| 13 namespace ui { |
| 14 class LayerAnimator; |
| 15 |
| 16 namespace test { |
| 17 |
| 18 class MultiLayerAnimatorTestControllerDelegate { |
| 19 public: |
| 20 // Get a list of all the LayerAnimator's used by the animation. |
| 21 virtual std::vector<ui::LayerAnimator*> GetLayerAnimators() = 0; |
| 22 |
| 23 protected: |
| 24 MultiLayerAnimatorTestControllerDelegate() {} |
| 25 virtual ~MultiLayerAnimatorTestControllerDelegate() {} |
| 26 |
| 27 private: |
| 28 DISALLOW_COPY_AND_ASSIGN(MultiLayerAnimatorTestControllerDelegate); |
| 29 }; |
| 30 |
| 31 } // namespace test |
| 32 } // namespace ui |
| 33 |
| 34 #endif // UI_COMPOSITOR_TEST_MULTI_LAYER_ANIMATOR_TEST_CONTROLLER_DELEGATE_H_ |
| OLD | NEW |