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

Side by Side Diff: cc/test/layer_tree_json_parser_unittest.cc

Issue 2080223010: cc: Clean up root_layer code in LTI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase++ Created 4 years, 5 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
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | cc/test/test_layer_tree_host_base.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "cc/test/layer_tree_json_parser.h" 5 #include "cc/test/layer_tree_json_parser.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "cc/layers/layer.h" 9 #include "cc/layers/layer.h"
10 #include "cc/test/fake_impl_task_runner_provider.h" 10 #include "cc/test/fake_impl_task_runner_provider.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 child->SetBounds(gfx::Size(40, 40)); 78 child->SetBounds(gfx::Size(40, 40));
79 79
80 gfx::Transform translate; 80 gfx::Transform translate;
81 translate.Translate(10, 15); 81 translate.Translate(10, 15);
82 child->SetTransform(translate); 82 child->SetTransform(translate);
83 83
84 parent->SetPosition(gfx::PointF(25.f, 25.f)); 84 parent->SetPosition(gfx::PointF(25.f, 25.f));
85 85
86 parent->test_properties()->AddChild(std::move(child)); 86 parent->test_properties()->AddChild(std::move(child));
87 root_impl->test_properties()->AddChild(std::move(parent)); 87 root_impl->test_properties()->AddChild(std::move(parent));
88 tree->SetRootLayer(std::move(root_impl)); 88 tree->SetRootLayerForTesting(std::move(root_impl));
89 89
90 std::string json = host_impl.LayerTreeAsJson(); 90 std::string json = host_impl.LayerTreeAsJson();
91 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL); 91 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL);
92 ASSERT_TRUE(root.get()); 92 ASSERT_TRUE(root.get());
93 EXPECT_TRUE( 93 EXPECT_TRUE(LayerTreesMatch(host_impl.active_tree()->root_layer_for_testing(),
94 LayerTreesMatch(host_impl.active_tree()->root_layer(), root.get())); 94 root.get()));
95 } 95 }
96 96
97 TEST_F(LayerTreeJsonParserSanityCheck, EventHandlerRegions) { 97 TEST_F(LayerTreeJsonParserSanityCheck, EventHandlerRegions) {
98 FakeImplTaskRunnerProvider task_runner_provider; 98 FakeImplTaskRunnerProvider task_runner_provider;
99 TestSharedBitmapManager shared_bitmap_manager; 99 TestSharedBitmapManager shared_bitmap_manager;
100 TestTaskGraphRunner task_graph_runner; 100 TestTaskGraphRunner task_graph_runner;
101 FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager, 101 FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager,
102 &task_graph_runner); 102 &task_graph_runner);
103 LayerTreeImpl* tree = host_impl.active_tree(); 103 LayerTreeImpl* tree = host_impl.active_tree();
104 104
105 std::unique_ptr<LayerImpl> root_impl(LayerImpl::Create(tree, 1)); 105 std::unique_ptr<LayerImpl> root_impl(LayerImpl::Create(tree, 1));
106 std::unique_ptr<LayerImpl> touch_layer(LayerImpl::Create(tree, 2)); 106 std::unique_ptr<LayerImpl> touch_layer(LayerImpl::Create(tree, 2));
107 107
108 root_impl->SetBounds(gfx::Size(100, 100)); 108 root_impl->SetBounds(gfx::Size(100, 100));
109 touch_layer->SetBounds(gfx::Size(50, 50)); 109 touch_layer->SetBounds(gfx::Size(50, 50));
110 110
111 Region touch_region; 111 Region touch_region;
112 touch_region.Union(gfx::Rect(10, 10, 20, 30)); 112 touch_region.Union(gfx::Rect(10, 10, 20, 30));
113 touch_region.Union(gfx::Rect(40, 10, 20, 20)); 113 touch_region.Union(gfx::Rect(40, 10, 20, 20));
114 touch_layer->SetTouchEventHandlerRegion(touch_region); 114 touch_layer->SetTouchEventHandlerRegion(touch_region);
115 115
116 root_impl->test_properties()->AddChild(std::move(touch_layer)); 116 root_impl->test_properties()->AddChild(std::move(touch_layer));
117 tree->SetRootLayer(std::move(root_impl)); 117 tree->SetRootLayerForTesting(std::move(root_impl));
118 118
119 std::string json = host_impl.LayerTreeAsJson(); 119 std::string json = host_impl.LayerTreeAsJson();
120 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL); 120 scoped_refptr<Layer> root = ParseTreeFromJson(json, NULL);
121 ASSERT_TRUE(root.get()); 121 ASSERT_TRUE(root.get());
122 EXPECT_TRUE( 122 EXPECT_TRUE(LayerTreesMatch(host_impl.active_tree()->root_layer_for_testing(),
123 LayerTreesMatch(host_impl.active_tree()->root_layer(), root.get())); 123 root.get()));
124 } 124 }
125 125
126 } // namespace cc 126 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | cc/test/test_layer_tree_host_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698