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

Unified Diff: cc/test/layer_tree_host_common_test.cc

Issue 1921503005: cc: Move main thread hierarchy dependencies into PropertyTreeBuilder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix telemetry unittest problem Created 4 years, 8 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 | « no previous file | cc/trees/draw_property_utils.cc » ('j') | cc/trees/draw_property_utils.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/layer_tree_host_common_test.cc
diff --git a/cc/test/layer_tree_host_common_test.cc b/cc/test/layer_tree_host_common_test.cc
index 9a4291c5fd467e308c22e30c39378bdfbca5ae94..7eeb0f3ddc1e469c9d173ea49e0215049666e377 100644
--- a/cc/test/layer_tree_host_common_test.cc
+++ b/cc/test/layer_tree_host_common_test.cc
@@ -76,7 +76,7 @@ void LayerTreeHostCommonTestBase::ExecuteCalculateDrawProperties(
Layer* page_scale_layer,
bool can_use_lcd_text,
bool layers_always_allowed_lcd_text) {
- LayerTreeHostCommon::PreCalculateMetaInformation(root_layer);
+ PropertyTreeBuilder::PreCalculateMetaInformation(root_layer);
EXPECT_TRUE(page_scale_layer || (page_scale_factor == 1.f));
gfx::Transform identity_matrix;
@@ -98,7 +98,7 @@ void LayerTreeHostCommonTestBase::ExecuteCalculateDrawProperties(
void LayerTreeHostCommonTestBase::
ExecuteCalculateDrawPropertiesWithPropertyTrees(Layer* root_layer) {
DCHECK(root_layer->layer_tree_host());
- LayerTreeHostCommon::PreCalculateMetaInformation(root_layer);
+ PropertyTreeBuilder::PreCalculateMetaInformation(root_layer);
gfx::Transform identity_transform;
@@ -140,7 +140,7 @@ void LayerTreeHostCommonTestBase::
void LayerTreeHostCommonTestBase::
ExecuteCalculateDrawPropertiesWithPropertyTrees(LayerImpl* root_layer) {
DCHECK(root_layer->layer_tree_impl());
- LayerTreeHostCommon::PreCalculateMetaInformationForTesting(root_layer);
+ PropertyTreeBuilder::PreCalculateMetaInformation(root_layer);
gfx::Transform identity_transform;
« no previous file with comments | « no previous file | cc/trees/draw_property_utils.cc » ('j') | cc/trees/draw_property_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698