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

Unified Diff: cc/trees/layer_tree_host_common_unittest.cc

Issue 548963002: Generalize scroll parent work in CalculateDrawProperties Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/layer_tree_host_common.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_common_unittest.cc
diff --git a/cc/trees/layer_tree_host_common_unittest.cc b/cc/trees/layer_tree_host_common_unittest.cc
index 83e6800e96c048031ebf5fde0339c511a8162b43..0865387e0eb8e756ca3698264068ffd423bcb9fd 100644
--- a/cc/trees/layer_tree_host_common_unittest.cc
+++ b/cc/trees/layer_tree_host_common_unittest.cc
@@ -2893,7 +2893,7 @@ TEST_F(LayerTreeHostCommonTest,
true,
false);
- child->draw_properties().sorted_for_recursion = true;
+ int initial_sequence_number = child->draw_properties().sequence_number;
TransformOperations start_transform_operations;
start_transform_operations.AppendScale(1.f, 0.f, 0.f);
@@ -2908,7 +2908,7 @@ TEST_F(LayerTreeHostCommonTest,
ExecuteCalculateDrawProperties(root.get());
- EXPECT_FALSE(child->draw_properties().sorted_for_recursion);
+ EXPECT_NE(initial_sequence_number, child->draw_properties().sequence_number);
}
TEST_F(LayerTreeHostCommonTest,
@@ -2930,13 +2930,13 @@ TEST_F(LayerTreeHostCommonTest,
true,
false);
- root->draw_properties().sorted_for_recursion = true;
+ int initial_sequence_number = root->draw_properties().sequence_number;
EXPECT_FALSE(root->TransformIsAnimating());
ExecuteCalculateDrawProperties(root.get());
- EXPECT_FALSE(root->draw_properties().sorted_for_recursion);
+ EXPECT_NE(initial_sequence_number, root->draw_properties().sequence_number);
}
TEST_F(LayerTreeHostCommonTest,
@@ -6632,6 +6632,113 @@ TEST_F(LayerTreeHostCommonTest, ClipParentScrolledInterveningLayer) {
EXPECT_TRUE(clip_child->is_clipped());
}
+TEST_F(LayerTreeHostCommonTest, ClipParentIsNotAnAncestor) {
+ // We can get into a situation where a clip parent is not an ancestor if the
+ // clip parent is also a scroll parent. Here's an example.
+ //
+ // + root
+ // + scroll_parent_border
+ // | + scroll_parent_clip
+ // | + scroll_parent
+ // + scroll_child
+ // + intervening clip
+ // + clip_child (clip_parent is the scroll parent).
+ //
+ // Gross, right?
+
+ scoped_refptr<Layer> root = Layer::Create();
+ scoped_refptr<Layer> scroll_parent_border = Layer::Create();
+ scoped_refptr<Layer> scroll_parent_clip = Layer::Create();
+ scoped_refptr<LayerWithForcedDrawsContent> scroll_parent =
+ make_scoped_refptr(new LayerWithForcedDrawsContent);
+ scoped_refptr<LayerWithForcedDrawsContent> scroll_child =
+ make_scoped_refptr(new LayerWithForcedDrawsContent);
+ scoped_refptr<Layer> intervening = Layer::Create();
+ scoped_refptr<LayerWithForcedDrawsContent> clip_child =
+ make_scoped_refptr(new LayerWithForcedDrawsContent);
+
+ root->AddChild(scroll_child);
+
+ root->AddChild(scroll_parent_border);
+ scroll_parent_border->AddChild(scroll_parent_clip);
+ scroll_parent_clip->AddChild(scroll_parent);
+
+ scroll_parent_clip->SetMasksToBounds(true);
+ intervening->SetMasksToBounds(true);
+
+ scroll_child->SetScrollParent(scroll_parent.get());
+ scroll_child->AddChild(intervening);
+ intervening->AddChild(clip_child);
+
+ clip_child->SetClipParent(scroll_parent.get());
+
+ gfx::Transform identity_transform;
+ SetLayerPropertiesForTesting(root.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_border.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(40, 40),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_clip.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(30, 30),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_child.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(intervening.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(5, 5),
+ true,
+ false);
+ SetLayerPropertiesForTesting(clip_child.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(60, 60),
+ true,
+ false);
+
+ scoped_ptr<FakeLayerTreeHost> host(CreateFakeLayerTreeHost());
+ host->SetRootLayer(root);
+
+ ExecuteCalculateDrawProperties(root.get());
+
+ EXPECT_TRUE(root->render_surface());
+
+ EXPECT_EQ(gfx::Rect(0, 0, 30, 30).ToString(),
+ scroll_child->clip_rect().ToString());
+ EXPECT_TRUE(scroll_child->is_clipped());
+
+ EXPECT_EQ(gfx::Rect(0, 0, 30, 30).ToString(),
+ clip_child->clip_rect().ToString());
+ EXPECT_TRUE(clip_child->is_clipped());
+}
+
TEST_F(LayerTreeHostCommonTest, DescendantsOfClipChildren) {
// Ensures that descendants of the clip child inherit the correct clip.
//
@@ -7051,6 +7158,117 @@ TEST_F(LayerTreeHostCommonTest, ClippedByScrollParent) {
EXPECT_TRUE(scroll_child->is_clipped());
}
+TEST_F(LayerTreeHostCommonTest, ScrollParentIsNotAxisAlignedToTarget) {
+ // It can be the case (depressingly) that a scroll parent is not axis aligned
+ // with respect to its target. This is rare, though. Usually when a scroller
+ // is transformed, it becomes a stacking context, and when an ancestor is
+ // transformed, it usually takes its descendant scroller along with it. The
+ // rules for 3d rendering contexts can bite us, however.
+ //
+ // It can be the case that the ancestor is transformed, but lies at the
+ // boundary of a 3d rendering context, meaning that the matrix it passes to
+ // its descendants is "flattened". Flattening is wonky it replaces the 3rd row
+ // and column of the matrix with 0's and 1's as follows.
+ //
+ // # # 0 #
+ // # # 0 #
+ // 0 0 1 0
+ // # # 0 #
+ //
+ // The # entries are unaffected by the flattening process. Flattening can
+ // break axis alignment. This tests creates a scenario where flattening
+ // becomes problematic:
+ //
+ // + root (transformed, should-flatten-transform)
+ // + scroll_parent_border
+ // | + scroll_parent_clip
+ // | + scroll_parent
+ // + scroll_child
+ //
+ scoped_refptr<Layer> root = Layer::Create();
+ scoped_refptr<Layer> scroll_parent_border = Layer::Create();
+ scoped_refptr<Layer> scroll_parent_clip = Layer::Create();
+ scoped_refptr<LayerWithForcedDrawsContent> scroll_parent =
+ make_scoped_refptr(new LayerWithForcedDrawsContent);
+ scoped_refptr<LayerWithForcedDrawsContent> scroll_child =
+ make_scoped_refptr(new LayerWithForcedDrawsContent);
+
+ root->AddChild(scroll_child);
+
+ root->AddChild(scroll_parent_border);
+ scroll_parent_border->AddChild(scroll_parent_clip);
+ scroll_parent_clip->AddChild(scroll_parent);
+
+ scroll_parent_clip->SetMasksToBounds(true);
+
+ scroll_child->SetScrollParent(scroll_parent.get());
+
+ gfx::Transform root_transform(0.7f,
+ -0.7f,
+ 0.8f,
+ 10.f,
+ 0.7f,
+ 0.7f,
+ 1.3f,
+ 10.f,
+ 0.f,
+ 0.f,
+ 1.f,
+ 0.f,
+ 0.f,
+ 0.f,
+ -.3f,
+ 1.f);
+
+ gfx::Transform identity_transform;
+ SetLayerPropertiesForTesting(root.get(),
+ root_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_border.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(40, 40),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_clip.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(30, 30),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_child.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+
+ scoped_ptr<FakeLayerTreeHost> host(CreateFakeLayerTreeHost());
+ host->SetRootLayer(root);
+
+ ExecuteCalculateDrawProperties(root.get());
+
+ EXPECT_TRUE(root->render_surface());
+
+ EXPECT_EQ(gfx::Rect(0, 0, 30, 30).ToString(),
+ scroll_child->clip_rect().ToString());
+ EXPECT_TRUE(scroll_child->is_clipped());
+}
+
TEST_F(LayerTreeHostCommonTest, SingularTransformSubtreesDoNotDraw) {
scoped_refptr<LayerWithForcedDrawsContent> root =
make_scoped_refptr(new LayerWithForcedDrawsContent);
@@ -7471,6 +7689,331 @@ TEST_F(LayerTreeHostCommonTest, OutOfOrderClippingRequiresRSLLSorting) {
EXPECT_TRUE(render_surface_layer_list.at(2)->render_surface());
}
+TEST_F(LayerTreeHostCommonTest, ScrollChildIsGrandchildOfLCA) {
+ // A previously unhandled case for layer sorting was when the scroll child was
+ // a grand child of the lowest common ancestor of the scroll child and parent.
+ // For example,
+ //
+ // + root
+ // + top_content
+ // + scroll_child
+ // + bottom_content
+ // + scroll_parent_border
+ // + scroll_parent_clip
+ // + scroll_parent
+ //
+ FakeImplProxy proxy;
+ TestSharedBitmapManager shared_bitmap_manager;
+ FakeLayerTreeHostImpl host_impl(&proxy, &shared_bitmap_manager);
+ host_impl.CreatePendingTree();
+ scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl.active_tree(), 1);
+ scoped_ptr<LayerImpl> scroll_parent_border =
+ LayerImpl::Create(host_impl.active_tree(), 2);
+ scoped_ptr<LayerImpl> scroll_parent_clip =
+ LayerImpl::Create(host_impl.active_tree(), 3);
+ scoped_ptr<LayerImpl> scroll_parent =
+ LayerImpl::Create(host_impl.active_tree(), 4);
+ scoped_ptr<LayerImpl> scroll_child =
+ LayerImpl::Create(host_impl.active_tree(), 5);
+ scoped_ptr<LayerImpl> bottom_content =
+ LayerImpl::Create(host_impl.active_tree(), 6);
+ scoped_ptr<LayerImpl> top_content =
+ LayerImpl::Create(host_impl.active_tree(), 7);
+
+ scroll_parent_clip->SetMasksToBounds(true);
+
+ scroll_child->SetScrollParent(scroll_parent.get());
+ scoped_ptr<std::set<LayerImpl*>> scroll_children(new std::set<LayerImpl*>);
+ scroll_children->insert(scroll_child.get());
+ scroll_parent->SetScrollChildren(scroll_children.release());
+
+ scroll_child->SetDrawsContent(true);
+ scroll_parent->SetDrawsContent(true);
+ top_content->SetDrawsContent(true);
+ bottom_content->SetDrawsContent(true);
+
+ gfx::Transform identity_transform;
+ gfx::Transform top_transform;
+ top_transform.Translate3d(0.0, 0.0, 5.0);
+ gfx::Transform bottom_transform;
+ bottom_transform.Translate3d(0.0, 0.0, 3.0);
+
+ SetLayerPropertiesForTesting(root.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_border.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(40, 40),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_clip.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(30, 30),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_child.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(top_content.get(),
+ top_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ false,
+ true);
+ SetLayerPropertiesForTesting(bottom_content.get(),
+ bottom_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ false,
+ true);
+
+ scroll_child->SetShouldFlattenTransform(false);
+ scroll_child->Set3dSortingContextId(1);
+
+ scroll_child->AddChild(bottom_content.Pass());
+
+ top_content->AddChild(scroll_child.Pass());
+ root->AddChild(top_content.Pass());
+
+ scroll_parent_clip->AddChild(scroll_parent.Pass());
+ scroll_parent_border->AddChild(scroll_parent_clip.Pass());
+ root->AddChild(scroll_parent_border.Pass());
+
+ LayerImplList render_surface_layer_list;
+ LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
+ root.get(), root->bounds(), &render_surface_layer_list);
+
+ LayerTreeHostCommon::CalculateDrawProperties(&inputs);
+
+ EXPECT_TRUE(root->render_surface());
+
+ EXPECT_EQ(4u, root->render_surface()->layer_list().size());
+ EXPECT_EQ(7, root->render_surface()->layer_list().at(0)->id());
+ EXPECT_EQ(5, root->render_surface()->layer_list().at(1)->id());
+ EXPECT_EQ(6, root->render_surface()->layer_list().at(2)->id());
+ EXPECT_EQ(4, root->render_surface()->layer_list().at(3)->id());
+
+ // Explicitly check that the sort weights of the two descendancs of the lowest
+ // common ancestor of the scroll parent and child are ordered correctly.
+ EXPECT_EQ(7, root->child_at(0)->id());
+ EXPECT_EQ(2, root->child_at(1)->id());
+ EXPECT_LT(root->child_at(1)->draw_properties().sort_weight,
+ root->child_at(0)->draw_properties().sort_weight);
+}
+
+TEST_F(LayerTreeHostCommonTest, ScrollWeightSetMultipleTimes) {
+ // This is a case where we have to reset a previously set weight.
+ // scroll_parent_1_border will get a negative weight because the child is
+ // visited first. When we reach scroll child 2, we'll have to go back and
+ // "fix" the weight for scroll_parent_2_border so that it sorts before
+ // scroll_parent_1_border.
+ //
+ // + root
+ // + scroll_parent_2_border
+ // | + scroll_parent_2_clip
+ // | + scroll_parent_2
+ // |
+ // + top_content
+ // | + scroll_child_1
+ // | + bottom_content
+ // |
+ // + scroll_parent_1_border
+ // + scroll_parent_1_clip
+ // + scroll_child_2
+ // + scroll_parent_1
+ //
+ FakeImplProxy proxy;
+ TestSharedBitmapManager shared_bitmap_manager;
+ FakeLayerTreeHostImpl host_impl(&proxy, &shared_bitmap_manager);
+ host_impl.CreatePendingTree();
+ scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl.active_tree(), 1);
+
+ scoped_ptr<LayerImpl> scroll_parent_1_border =
+ LayerImpl::Create(host_impl.active_tree(), 2);
+ scoped_ptr<LayerImpl> scroll_parent_1_clip =
+ LayerImpl::Create(host_impl.active_tree(), 3);
+ scoped_ptr<LayerImpl> scroll_parent_1 =
+ LayerImpl::Create(host_impl.active_tree(), 4);
+
+ scoped_ptr<LayerImpl> scroll_child_1 =
+ LayerImpl::Create(host_impl.active_tree(), 5);
+
+ scoped_ptr<LayerImpl> scroll_parent_2_border =
+ LayerImpl::Create(host_impl.active_tree(), 6);
+ scoped_ptr<LayerImpl> scroll_parent_2_clip =
+ LayerImpl::Create(host_impl.active_tree(), 7);
+ scoped_ptr<LayerImpl> scroll_parent_2 =
+ LayerImpl::Create(host_impl.active_tree(), 8);
+
+ scoped_ptr<LayerImpl> scroll_child_2 =
+ LayerImpl::Create(host_impl.active_tree(), 9);
+
+ scoped_ptr<LayerImpl> bottom_content =
+ LayerImpl::Create(host_impl.active_tree(), 10);
+ scoped_ptr<LayerImpl> top_content =
+ LayerImpl::Create(host_impl.active_tree(), 11);
+
+ scroll_parent_1_clip->SetMasksToBounds(true);
+ scroll_parent_2_clip->SetMasksToBounds(true);
+
+ scroll_child_1->SetScrollParent(scroll_parent_1.get());
+ scroll_child_2->SetScrollParent(scroll_parent_2.get());
+
+ scoped_ptr<std::set<LayerImpl*>> scroll_children_1(new std::set<LayerImpl*>);
+ scroll_children_1->insert(scroll_child_1.get());
+ scroll_parent_1->SetScrollChildren(scroll_children_1.release());
+
+ scoped_ptr<std::set<LayerImpl*>> scroll_children_2(new std::set<LayerImpl*>);
+ scroll_children_2->insert(scroll_child_2.get());
+ scroll_parent_2->SetScrollChildren(scroll_children_2.release());
+
+ scroll_child_1->SetDrawsContent(true);
+ scroll_child_2->SetDrawsContent(true);
+ scroll_parent_1->SetDrawsContent(true);
+ scroll_parent_2->SetDrawsContent(true);
+
+ top_content->SetDrawsContent(true);
+ bottom_content->SetDrawsContent(true);
+
+ gfx::Transform identity_transform;
+ gfx::Transform top_transform;
+ top_transform.Translate3d(0.0, 0.0, 5.0);
+ gfx::Transform bottom_transform;
+ bottom_transform.Translate3d(0.0, 0.0, 3.0);
+
+ SetLayerPropertiesForTesting(root.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_1_border.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(40, 40),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_1_clip.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(30, 30),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_1.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_2_border.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(40, 40),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_2_clip.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(30, 30),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_parent_2.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_child_1.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(scroll_child_2.get(),
+ identity_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ true,
+ false);
+ SetLayerPropertiesForTesting(top_content.get(),
+ top_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ false,
+ true);
+ SetLayerPropertiesForTesting(bottom_content.get(),
+ bottom_transform,
+ gfx::Point3F(),
+ gfx::PointF(),
+ gfx::Size(50, 50),
+ false,
+ true);
+
+ scroll_child_1->SetShouldFlattenTransform(false);
+ scroll_child_1->Set3dSortingContextId(1);
+
+ scroll_child_2->SetShouldFlattenTransform(false);
+ scroll_child_2->Set3dSortingContextId(1);
+
+ scroll_parent_2_clip->AddChild(scroll_parent_2.Pass());
+ scroll_parent_2_border->AddChild(scroll_parent_2_clip.Pass());
+ root->AddChild(scroll_parent_2_border.Pass());
+
+ scroll_child_1->AddChild(bottom_content.Pass());
+ top_content->AddChild(scroll_child_1.Pass());
+ root->AddChild(top_content.Pass());
+
+ scroll_parent_1_clip->AddChild(scroll_child_2.Pass());
+ scroll_parent_1_clip->AddChild(scroll_parent_1.Pass());
+ scroll_parent_1_border->AddChild(scroll_parent_1_clip.Pass());
+ root->AddChild(scroll_parent_1_border.Pass());
+
+ LayerImplList render_surface_layer_list;
+ LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
+ root.get(), root->bounds(), &render_surface_layer_list);
+
+ LayerTreeHostCommon::CalculateDrawProperties(&inputs);
+
+ EXPECT_TRUE(root->render_surface());
+
+ EXPECT_GT(0, root->child_at(0)->draw_properties().sort_weight);
+ EXPECT_GT(0, root->child_at(2)->draw_properties().sort_weight);
+ EXPECT_LT(root->child_at(0)->draw_properties().sort_weight,
+ root->child_at(2)->draw_properties().sort_weight);
+ EXPECT_TRUE(root->draw_properties().children_need_sorting);
+}
+
TEST_F(LayerTreeHostCommonTest, DoNotClobberSorting) {
// We rearrange layer list contributions if we have to visit children out of
// order, but it should be a 'stable' rearrangement. That is, the layer list
« no previous file with comments | « cc/trees/layer_tree_host_common.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698