Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: cc/layers/layer_impl_test_properties.h

Issue 2053983003: cc : Move LayerImpl::parent to test properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698