| 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_ELEMENT_ANIMATIONS_H_ | 5 #ifndef CC_ANIMATION_ELEMENT_ANIMATIONS_H_ |
| 6 #define CC_ANIMATION_ELEMENT_ANIMATIONS_H_ | 6 #define CC_ANIMATION_ELEMENT_ANIMATIONS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/containers/linked_list.h" | 10 #include "base/containers/linked_list.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 void AbortAnimations(TargetProperty::Type target_property, | 83 void AbortAnimations(TargetProperty::Type target_property, |
| 84 bool needs_completion = false); | 84 bool needs_completion = false); |
| 85 | 85 |
| 86 // Returns the active animation animating the given property that is either | 86 // Returns the active animation animating the given property that is either |
| 87 // running, or is next to run, if such an animation exists. | 87 // running, or is next to run, if such an animation exists. |
| 88 Animation* GetAnimation(TargetProperty::Type target_property) const; | 88 Animation* GetAnimation(TargetProperty::Type target_property) const; |
| 89 | 89 |
| 90 // Returns the active animation for the given unique animation id. | 90 // Returns the active animation for the given unique animation id. |
| 91 Animation* GetAnimationById(int animation_id) const; | 91 Animation* GetAnimationById(int animation_id) const; |
| 92 | 92 |
| 93 void SetEventObserver(LayerAnimationEventObserver* observer); | |
| 94 | |
| 95 private: | 93 private: |
| 96 friend class base::RefCounted<ElementAnimations>; | 94 friend class base::RefCounted<ElementAnimations>; |
| 97 | 95 |
| 98 // TODO(loyso): Erase this when LAC merged into ElementAnimations. | 96 // TODO(loyso): Erase this when LAC merged into ElementAnimations. |
| 99 friend class AnimationHost; | 97 friend class AnimationHost; |
| 100 | 98 |
| 101 explicit ElementAnimations(AnimationHost* host); | 99 explicit ElementAnimations(AnimationHost* host); |
| 102 ~ElementAnimations() override; | 100 ~ElementAnimations() override; |
| 103 | 101 |
| 104 // LayerAnimationValueObserver implementation. | 102 // LayerAnimationValueObserver implementation. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 // LAC is owned by ElementAnimations (1:1 relationship). | 140 // LAC is owned by ElementAnimations (1:1 relationship). |
| 143 scoped_refptr<LayerAnimationController> layer_animation_controller_; | 141 scoped_refptr<LayerAnimationController> layer_animation_controller_; |
| 144 AnimationHost* animation_host_; | 142 AnimationHost* animation_host_; |
| 145 | 143 |
| 146 DISALLOW_COPY_AND_ASSIGN(ElementAnimations); | 144 DISALLOW_COPY_AND_ASSIGN(ElementAnimations); |
| 147 }; | 145 }; |
| 148 | 146 |
| 149 } // namespace cc | 147 } // namespace cc |
| 150 | 148 |
| 151 #endif // CC_ANIMATION_ELEMENT_ANIMATIONS_H_ | 149 #endif // CC_ANIMATION_ELEMENT_ANIMATIONS_H_ |
| OLD | NEW |