| 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_TREES_MUTATOR_HOST_CLIENT_H_ | 5 #ifndef CC_TREES_MUTATOR_HOST_CLIENT_H_ |
| 6 #define CC_TREES_MUTATOR_HOST_CLIENT_H_ | 6 #define CC_TREES_MUTATOR_HOST_CLIENT_H_ |
| 7 | 7 |
| 8 // TODO(loyso) Move these headers out of cc/animation. | 8 // TODO(loyso) Move these headers out of cc/animation. |
| 9 #include "cc/animation/element_id.h" | |
| 10 #include "cc/animation/property_animation_state.h" | 9 #include "cc/animation/property_animation_state.h" |
| 11 #include "cc/animation/target_property.h" | 10 #include "cc/animation/target_property.h" |
| 11 #include "cc/trees/element_id.h" |
| 12 | 12 |
| 13 namespace gfx { | 13 namespace gfx { |
| 14 class Transform; | 14 class Transform; |
| 15 class ScrollOffset; | 15 class ScrollOffset; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace cc { | 18 namespace cc { |
| 19 | 19 |
| 20 class FilterOperations; | 20 class FilterOperations; |
| 21 | 21 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 const PropertyAnimationState& state) = 0; | 51 const PropertyAnimationState& state) = 0; |
| 52 | 52 |
| 53 virtual void ScrollOffsetAnimationFinished() = 0; | 53 virtual void ScrollOffsetAnimationFinished() = 0; |
| 54 virtual gfx::ScrollOffset GetScrollOffsetForAnimation( | 54 virtual gfx::ScrollOffset GetScrollOffsetForAnimation( |
| 55 ElementId element_id) const = 0; | 55 ElementId element_id) const = 0; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace cc | 58 } // namespace cc |
| 59 | 59 |
| 60 #endif // CC_TREES_MUTATOR_HOST_CLIENT_H_ | 60 #endif // CC_TREES_MUTATOR_HOST_CLIENT_H_ |
| OLD | NEW |