Index: cc/layers/solid_color_layer_impl_unittest.cc |
diff --git a/cc/layers/solid_color_layer_impl_unittest.cc b/cc/layers/solid_color_layer_impl_unittest.cc |
index f02e0d294f66b6deaf68f728da15b6a8c086c80e..dd30563580b280f7cb88991bcb3d3eec5f1cc008 100644 |
--- a/cc/layers/solid_color_layer_impl_unittest.cc |
+++ b/cc/layers/solid_color_layer_impl_unittest.cc |
@@ -31,8 +31,7 @@ TEST(SolidColorLayerImplTest, VerifyTilingCompleteAndNoOverlap) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestTaskGraphRunner task_graph_runner; |
- FakeLayerTreeHostImpl host_impl(&task_runner_provider, nullptr, |
- &task_graph_runner); |
+ FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner); |
std::unique_ptr<SolidColorLayerImpl> layer = |
SolidColorLayerImpl::Create(host_impl.active_tree(), 1); |
layer->draw_properties().visible_layer_rect = visible_layer_rect; |
@@ -56,8 +55,7 @@ TEST(SolidColorLayerImplTest, VerifyCorrectBackgroundColorInQuad) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestTaskGraphRunner task_graph_runner; |
- FakeLayerTreeHostImpl host_impl(&task_runner_provider, nullptr, |
- &task_graph_runner); |
+ FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner); |
std::unique_ptr<SolidColorLayerImpl> layer = |
SolidColorLayerImpl::Create(host_impl.active_tree(), 1); |
layer->draw_properties().visible_layer_rect = visible_layer_rect; |
@@ -84,8 +82,7 @@ TEST(SolidColorLayerImplTest, VerifyCorrectOpacityInQuad) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestTaskGraphRunner task_graph_runner; |
- FakeLayerTreeHostImpl host_impl(&task_runner_provider, nullptr, |
- &task_graph_runner); |
+ FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner); |
std::unique_ptr<SolidColorLayerImpl> layer = |
SolidColorLayerImpl::Create(host_impl.active_tree(), 1); |
layer->draw_properties().visible_layer_rect = visible_layer_rect; |
@@ -111,8 +108,7 @@ TEST(SolidColorLayerImplTest, VerifyCorrectBlendModeInQuad) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestTaskGraphRunner task_graph_runner; |
- FakeLayerTreeHostImpl host_impl(&task_runner_provider, nullptr, |
- &task_graph_runner); |
+ FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner); |
std::unique_ptr<SolidColorLayerImpl> layer = |
SolidColorLayerImpl::Create(host_impl.active_tree(), 1); |
layer->SetBounds(layer_size); |