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 27 matching lines...) Expand all Loading... |
38 LayerPositionConstraint position_constraint; | 38 LayerPositionConstraint position_constraint; |
39 gfx::Point3F transform_origin; | 39 gfx::Point3F transform_origin; |
40 LayerImpl* scroll_parent; | 40 LayerImpl* scroll_parent; |
41 std::unique_ptr<std::set<LayerImpl*>> scroll_children; | 41 std::unique_ptr<std::set<LayerImpl*>> scroll_children; |
42 LayerImpl* clip_parent; | 42 LayerImpl* clip_parent; |
43 std::unique_ptr<std::set<LayerImpl*>> clip_children; | 43 std::unique_ptr<std::set<LayerImpl*>> clip_children; |
44 std::vector<std::unique_ptr<CopyOutputRequest>> copy_requests; | 44 std::vector<std::unique_ptr<CopyOutputRequest>> copy_requests; |
45 LayerImplList children; | 45 LayerImplList children; |
46 LayerImpl* mask_layer; | 46 LayerImpl* mask_layer; |
47 LayerImpl* replica_layer; | 47 LayerImpl* replica_layer; |
| 48 LayerImpl* parent; |
48 }; | 49 }; |
49 | 50 |
50 } // namespace cc | 51 } // namespace cc |
51 | 52 |
52 #endif // CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ | 53 #endif // CC_LAYERS_LAYER_IMPL_TEST_PROPERTIES_H_ |
OLD | NEW |