Index: cc/layers/layer_impl_unittest.cc |
diff --git a/cc/layers/layer_impl_unittest.cc b/cc/layers/layer_impl_unittest.cc |
index 95c00b8f23e479b828025930a8ed562381b3dd7a..1a65acb4e91bd02cecbc072b869d8b4afa296e9c 100644 |
--- a/cc/layers/layer_impl_unittest.cc |
+++ b/cc/layers/layer_impl_unittest.cc |
@@ -112,7 +112,8 @@ TEST(LayerImplTest, VerifyLayerChangesAreTrackedProperly) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestSharedBitmapManager shared_bitmap_manager; |
TestTaskGraphRunner task_graph_runner; |
- std::unique_ptr<OutputSurface> output_surface = FakeOutputSurface::Create3d(); |
+ std::unique_ptr<OutputSurface> output_surface = |
+ FakeOutputSurface::CreateDelegating3d(); |
FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager, |
&task_graph_runner); |
host_impl.SetVisible(true); |
@@ -224,7 +225,8 @@ TEST(LayerImplTest, VerifyNeedsUpdateDrawProperties) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestSharedBitmapManager shared_bitmap_manager; |
TestTaskGraphRunner task_graph_runner; |
- std::unique_ptr<OutputSurface> output_surface = FakeOutputSurface::Create3d(); |
+ std::unique_ptr<OutputSurface> output_surface = |
+ FakeOutputSurface::CreateDelegating3d(); |
FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager, |
&task_graph_runner); |
host_impl.SetVisible(true); |
@@ -345,7 +347,8 @@ TEST(LayerImplTest, SafeOpaqueBackgroundColor) { |
FakeImplTaskRunnerProvider task_runner_provider; |
TestSharedBitmapManager shared_bitmap_manager; |
TestTaskGraphRunner task_graph_runner; |
- std::unique_ptr<OutputSurface> output_surface = FakeOutputSurface::Create3d(); |
+ std::unique_ptr<OutputSurface> output_surface = |
+ FakeOutputSurface::CreateDelegating3d(); |
FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager, |
&task_graph_runner); |
host_impl.SetVisible(true); |