Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: ui/compositor/test/multi_layer_animator_test_controller_delegate.h

Issue 1900283002: Added ui::test::MultiLayerAnimatorTestController and Delegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated gn build. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698