| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 CC_ANIMATION_ANIMATION_PLAYER_H_ | 5 #ifndef CC_ANIMATION_ANIMATION_PLAYER_H_ |
| 6 #define CC_ANIMATION_ANIMATION_PLAYER_H_ | 6 #define CC_ANIMATION_ANIMATION_PLAYER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/containers/linked_list.h" | 10 #include "base/containers/linked_list.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 13 #include "cc/animation/animation.h" | 14 #include "cc/animation/animation.h" |
| 14 #include "cc/base/cc_export.h" | 15 #include "cc/base/cc_export.h" |
| 15 | 16 |
| 16 namespace cc { | 17 namespace cc { |
| 17 | 18 |
| 18 class AnimationDelegate; | 19 class AnimationDelegate; |
| 19 class AnimationHost; | 20 class AnimationHost; |
| 20 class AnimationTimeline; | 21 class AnimationTimeline; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 106 |
| 106 int id_; | 107 int id_; |
| 107 int layer_id_; | 108 int layer_id_; |
| 108 | 109 |
| 109 DISALLOW_COPY_AND_ASSIGN(AnimationPlayer); | 110 DISALLOW_COPY_AND_ASSIGN(AnimationPlayer); |
| 110 }; | 111 }; |
| 111 | 112 |
| 112 } // namespace cc | 113 } // namespace cc |
| 113 | 114 |
| 114 #endif // CC_ANIMATION_ANIMATION_PLAYER_H_ | 115 #endif // CC_ANIMATION_ANIMATION_PLAYER_H_ |
| OLD | NEW |