| Index: cc/layers/texture_layer_unittest.cc
|
| diff --git a/cc/layers/texture_layer_unittest.cc b/cc/layers/texture_layer_unittest.cc
|
| index ef631d856912f1ee751c5b7d9871bdfd4f865dfc..82894299f7ae249248d7bbc47b825bea4930cde6 100644
|
| --- a/cc/layers/texture_layer_unittest.cc
|
| +++ b/cc/layers/texture_layer_unittest.cc
|
| @@ -189,7 +189,6 @@
|
| TextureLayerTest()
|
| : fake_client_(
|
| FakeLayerTreeHostClient(FakeLayerTreeHostClient::DIRECT_3D)),
|
| - output_surface_(FakeOutputSurface::Create3d()),
|
| host_impl_(&proxy_, &shared_bitmap_manager_, &task_graph_runner_),
|
| test_data_(&shared_bitmap_manager_) {}
|
|
|
| @@ -215,7 +214,6 @@
|
| FakeLayerTreeHostClient fake_client_;
|
| TestSharedBitmapManager shared_bitmap_manager_;
|
| TestTaskGraphRunner task_graph_runner_;
|
| - scoped_ptr<OutputSurface> output_surface_;
|
| FakeLayerTreeHostImpl host_impl_;
|
| CommonMailboxObjects test_data_;
|
| LayerSettings layer_settings_;
|
| @@ -884,7 +882,7 @@
|
| TextureLayerTest::SetUp();
|
| layer_tree_host_ =
|
| MockLayerTreeHost::Create(&fake_client_, &task_graph_runner_);
|
| - EXPECT_TRUE(host_impl_.InitializeRenderer(output_surface_.get()));
|
| + EXPECT_TRUE(host_impl_.InitializeRenderer(FakeOutputSurface::Create3d()));
|
| }
|
|
|
| bool WillDraw(TextureLayerImpl* layer, DrawMode mode) {
|
|
|