OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ | 5 #ifndef UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ |
6 #define UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ | 6 #define UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ui/compositor/layer_animation_delegate.h" | 9 #include "ui/compositor/layer_animation_delegate.h" |
10 #include "ui/gfx/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
11 #include "ui/gfx/transform.h" | 11 #include "ui/gfx/transform.h" |
12 | 12 |
13 namespace ui { | 13 namespace ui { |
14 | 14 |
15 class TestLayerAnimationDelegate : public LayerAnimationDelegate { | 15 class TestLayerAnimationDelegate : public LayerAnimationDelegate { |
16 public: | 16 public: |
17 TestLayerAnimationDelegate(); | 17 TestLayerAnimationDelegate(); |
18 explicit TestLayerAnimationDelegate(const LayerAnimationDelegate& other); | 18 explicit TestLayerAnimationDelegate(const LayerAnimationDelegate& other); |
19 ~TestLayerAnimationDelegate() override; | 19 ~TestLayerAnimationDelegate() override; |
20 | 20 |
(...skipping 26 matching lines...) Expand all Loading... |
47 float brightness_; | 47 float brightness_; |
48 float grayscale_; | 48 float grayscale_; |
49 SkColor color_; | 49 SkColor color_; |
50 | 50 |
51 // Allow copy and assign. | 51 // Allow copy and assign. |
52 }; | 52 }; |
53 | 53 |
54 } // namespace ui | 54 } // namespace ui |
55 | 55 |
56 #endif // UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ | 56 #endif // UI_COMPOSITOR_TEST_TEST_LAYER_ANIMATION_DELEGATE_H_ |
OLD | NEW |