| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <unordered_map> | 11 #include <unordered_map> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "cc/animation/element_id.h" | |
| 15 #include "cc/base/cc_export.h" | 14 #include "cc/base/cc_export.h" |
| 16 #include "cc/base/synced_property.h" | 15 #include "cc/base/synced_property.h" |
| 17 #include "cc/layers/layer_sticky_position_constraint.h" | 16 #include "cc/layers/layer_sticky_position_constraint.h" |
| 18 #include "cc/output/filter_operations.h" | 17 #include "cc/output/filter_operations.h" |
| 18 #include "cc/trees/element_id.h" |
| 19 #include "ui/gfx/geometry/rect_f.h" | 19 #include "ui/gfx/geometry/rect_f.h" |
| 20 #include "ui/gfx/geometry/scroll_offset.h" | 20 #include "ui/gfx/geometry/scroll_offset.h" |
| 21 #include "ui/gfx/transform.h" | 21 #include "ui/gfx/transform.h" |
| 22 | 22 |
| 23 namespace base { | 23 namespace base { |
| 24 namespace trace_event { | 24 namespace trace_event { |
| 25 class TracedValue; | 25 class TracedValue; |
| 26 } | 26 } |
| 27 } | 27 } |
| 28 | 28 |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 DrawTransforms& GetDrawTransforms(int transform_id, int effect_id) const; | 604 DrawTransforms& GetDrawTransforms(int transform_id, int effect_id) const; |
| 605 DrawTransformData& FetchDrawTransformsDataFromCache(int transform_id, | 605 DrawTransformData& FetchDrawTransformsDataFromCache(int transform_id, |
| 606 int effect_id) const; | 606 int effect_id) const; |
| 607 | 607 |
| 608 PropertyTreesCachedData cached_data_; | 608 PropertyTreesCachedData cached_data_; |
| 609 }; | 609 }; |
| 610 | 610 |
| 611 } // namespace cc | 611 } // namespace cc |
| 612 | 612 |
| 613 #endif // CC_TREES_PROPERTY_TREE_H_ | 613 #endif // CC_TREES_PROPERTY_TREE_H_ |
| OLD | NEW |