OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PROPERTY_TREE_H_ | 5 #ifndef CC_TREES_PROPERTY_TREE_H_ |
6 #define CC_TREES_PROPERTY_TREE_H_ | 6 #define CC_TREES_PROPERTY_TREE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 void UpdateTargetSpaceTransform(TransformNode* node, | 190 void UpdateTargetSpaceTransform(TransformNode* node, |
191 TransformNode* target_node); | 191 TransformNode* target_node); |
192 void UpdateIsAnimated(TransformNode* node, TransformNode* parent_node); | 192 void UpdateIsAnimated(TransformNode* node, TransformNode* parent_node); |
193 void UpdateSnapping(TransformNode* node); | 193 void UpdateSnapping(TransformNode* node); |
194 }; | 194 }; |
195 | 195 |
196 class CC_EXPORT ClipTree final : public PropertyTree<ClipNode> {}; | 196 class CC_EXPORT ClipTree final : public PropertyTree<ClipNode> {}; |
197 | 197 |
198 class CC_EXPORT OpacityTree final : public PropertyTree<OpacityNode> {}; | 198 class CC_EXPORT OpacityTree final : public PropertyTree<OpacityNode> {}; |
199 | 199 |
| 200 class CC_EXPORT PropertyTrees final { |
| 201 public: |
| 202 TransformTree transform_tree; |
| 203 OpacityTree opacity_tree; |
| 204 ClipTree clip_tree; |
| 205 }; |
| 206 |
200 } // namespace cc | 207 } // namespace cc |
201 | 208 |
202 #endif // CC_TREES_PROPERTY_TREE_H_ | 209 #endif // CC_TREES_PROPERTY_TREE_H_ |
OLD | NEW |