| 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;
|
|
|
|
|