| Index: cc/trees/layer_tree_host_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
|
| index e8c629acae0eab131ca1f36fe30e1e97bd3ec3f0..24f6e4dffac6dee835003b61011d287cf6f5a64e 100644
|
| --- a/cc/trees/layer_tree_host_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_unittest.cc
|
| @@ -5053,7 +5053,7 @@ class LayerTreeHostTestGpuRasterizationDefault : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_FALSE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_FALSE(layer_impl->use_gpu_rasterization());
|
| }
|
|
|
| virtual void DidActivateTreeOnThread(LayerTreeHostImpl* host_impl) OVERRIDE {
|
| @@ -5061,7 +5061,7 @@ class LayerTreeHostTestGpuRasterizationDefault : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_FALSE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_FALSE(layer_impl->use_gpu_rasterization());
|
| EndTest();
|
| }
|
|
|
| @@ -5124,7 +5124,7 @@ class LayerTreeHostTestGpuRasterizationEnabled : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_FALSE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_FALSE(layer_impl->use_gpu_rasterization());
|
| }
|
|
|
| virtual void DidActivateTreeOnThread(LayerTreeHostImpl* host_impl) OVERRIDE {
|
| @@ -5132,7 +5132,7 @@ class LayerTreeHostTestGpuRasterizationEnabled : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_FALSE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_FALSE(layer_impl->use_gpu_rasterization());
|
| EndTest();
|
| }
|
|
|
| @@ -5195,7 +5195,7 @@ class LayerTreeHostTestGpuRasterizationForced : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_TRUE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_TRUE(layer_impl->use_gpu_rasterization());
|
| }
|
|
|
| virtual void DidActivateTreeOnThread(LayerTreeHostImpl* host_impl) OVERRIDE {
|
| @@ -5203,7 +5203,7 @@ class LayerTreeHostTestGpuRasterizationForced : public LayerTreeHostTest {
|
| PictureLayerImpl* layer_impl =
|
| static_cast<PictureLayerImpl*>(root->children()[0]);
|
|
|
| - EXPECT_TRUE(layer_impl->ShouldUseGpuRasterization());
|
| + EXPECT_TRUE(layer_impl->use_gpu_rasterization());
|
| EndTest();
|
| }
|
|
|
|
|