| 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/base/cc_export.h" | |
| 15 #include "cc/base/synced_property.h" | 14 #include "cc/base/synced_property.h" |
| 15 #include "cc/cc_export.h" |
| 16 #include "cc/layers/layer_sticky_position_constraint.h" | 16 #include "cc/layers/layer_sticky_position_constraint.h" |
| 17 #include "cc/output/filter_operations.h" | 17 #include "cc/paint/filter_operations.h" |
| 18 #include "cc/trees/element_id.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 } |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 DrawTransforms& GetDrawTransforms(int transform_id, int effect_id) const; | 662 DrawTransforms& GetDrawTransforms(int transform_id, int effect_id) const; |
| 663 DrawTransformData& FetchDrawTransformsDataFromCache(int transform_id, | 663 DrawTransformData& FetchDrawTransformsDataFromCache(int transform_id, |
| 664 int effect_id) const; | 664 int effect_id) const; |
| 665 | 665 |
| 666 PropertyTreesCachedData cached_data_; | 666 PropertyTreesCachedData cached_data_; |
| 667 }; | 667 }; |
| 668 | 668 |
| 669 } // namespace cc | 669 } // namespace cc |
| 670 | 670 |
| 671 #endif // CC_TREES_PROPERTY_TREE_H_ | 671 #endif // CC_TREES_PROPERTY_TREE_H_ |
| OLD | NEW |