| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ | 5 #ifndef CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ |
| 6 #define CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ | 6 #define CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 size_t num_unclipped_descendants; | 32 size_t num_unclipped_descendants; |
| 33 float opacity; | 33 float opacity; |
| 34 LayerPositionConstraint position_constraint; | 34 LayerPositionConstraint position_constraint; |
| 35 gfx::Point3F transform_origin; | 35 gfx::Point3F transform_origin; |
| 36 LayerImpl* scroll_parent; | 36 LayerImpl* scroll_parent; |
| 37 std::unique_ptr<std::set<LayerImpl*>> scroll_children; | 37 std::unique_ptr<std::set<LayerImpl*>> scroll_children; |
| 38 LayerImpl* clip_parent; | 38 LayerImpl* clip_parent; |
| 39 std::unique_ptr<std::set<LayerImpl*>> clip_children; | 39 std::unique_ptr<std::set<LayerImpl*>> clip_children; |
| 40 std::vector<std::unique_ptr<CopyOutputRequest>> copy_requests; | 40 std::vector<std::unique_ptr<CopyOutputRequest>> copy_requests; |
| 41 LayerImplList children; | 41 LayerImplList children; |
| 42 LayerImpl* parent; |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 } // namespace cc | 45 } // namespace cc |
| 45 | 46 |
| 46 #endif // CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ | 47 #endif // CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ |
| OLD | NEW |