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_LAYER_ANIMATION_ELEMENT_H_ | 5 #ifndef UI_COMPOSITOR_LAYER_ANIMATION_ELEMENT_H_ |
6 #define UI_COMPOSITOR_LAYER_ANIMATION_ELEMENT_H_ | 6 #define UI_COMPOSITOR_LAYER_ANIMATION_ELEMENT_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time.h" |
11 #include "cc/animation.h" | 11 #include "cc/animation/animation.h" |
12 #include "cc/animation_events.h" | 12 #include "cc/animation/animation_events.h" |
13 #include "third_party/skia/include/core/SkColor.h" | 13 #include "third_party/skia/include/core/SkColor.h" |
14 #include "ui/base/animation/tween.h" | 14 #include "ui/base/animation/tween.h" |
15 #include "ui/compositor/compositor_export.h" | 15 #include "ui/compositor/compositor_export.h" |
16 #include "ui/gfx/rect.h" | 16 #include "ui/gfx/rect.h" |
17 #include "ui/gfx/transform.h" | 17 #include "ui/gfx/transform.h" |
18 | 18 |
19 namespace ui { | 19 namespace ui { |
20 | 20 |
21 class InterpolatedTransform; | 21 class InterpolatedTransform; |
22 class LayerAnimationDelegate; | 22 class LayerAnimationDelegate; |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 int animation_group_id_; | 216 int animation_group_id_; |
217 | 217 |
218 double last_progressed_fraction_; | 218 double last_progressed_fraction_; |
219 | 219 |
220 DISALLOW_COPY_AND_ASSIGN(LayerAnimationElement); | 220 DISALLOW_COPY_AND_ASSIGN(LayerAnimationElement); |
221 }; | 221 }; |
222 | 222 |
223 } // namespace ui | 223 } // namespace ui |
224 | 224 |
225 #endif // UI_COMPOSITOR_LAYER_ANIMATION_ELEMENT_H_ | 225 #endif // UI_COMPOSITOR_LAYER_ANIMATION_ELEMENT_H_ |
OLD | NEW |