| Index: cc/layers/layer_list_iterator_unittest.cc
 | 
| diff --git a/cc/layers/layer_list_iterator_unittest.cc b/cc/layers/layer_list_iterator_unittest.cc
 | 
| index d69a9ff959cff50b34026ec17fe5b8ed9383ea3b..048b33abdc5b20279496bc81021bd8eb784f51af 100644
 | 
| --- a/cc/layers/layer_list_iterator_unittest.cc
 | 
| +++ b/cc/layers/layer_list_iterator_unittest.cc
 | 
| @@ -11,7 +11,6 @@
 | 
|  #include "cc/test/fake_impl_task_runner_provider.h"
 | 
|  #include "cc/test/fake_layer_tree_host.h"
 | 
|  #include "cc/test/fake_layer_tree_host_impl.h"
 | 
| -#include "cc/test/test_shared_bitmap_manager.h"
 | 
|  #include "cc/test/test_task_graph_runner.h"
 | 
|  #include "cc/trees/layer_tree_impl.h"
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
| @@ -198,12 +197,10 @@ TEST(LayerListReverseIteratorTest, VerifyNullFirstLayer) {
 | 
|  TEST(LayerListIteratorTest, VerifyTraversalOrderImpl) {
 | 
|    // Unfortunate preamble.
 | 
|    FakeImplTaskRunnerProvider task_runner_provider;
 | 
| -  TestSharedBitmapManager shared_bitmap_manager;
 | 
|    TestTaskGraphRunner task_graph_runner;
 | 
|    std::unique_ptr<CompositorFrameSink> compositor_frame_sink =
 | 
|        FakeCompositorFrameSink::Create3d();
 | 
| -  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager,
 | 
| -                                  &task_graph_runner);
 | 
| +  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner);
 | 
|    host_impl.SetVisible(true);
 | 
|    EXPECT_TRUE(host_impl.InitializeRenderer(compositor_frame_sink.get()));
 | 
|  
 | 
| @@ -253,12 +250,10 @@ TEST(LayerListIteratorTest, VerifyTraversalOrderImpl) {
 | 
|  TEST(LayerListIteratorTest, VerifySingleLayerImpl) {
 | 
|    // Unfortunate preamble.
 | 
|    FakeImplTaskRunnerProvider task_runner_provider;
 | 
| -  TestSharedBitmapManager shared_bitmap_manager;
 | 
|    TestTaskGraphRunner task_graph_runner;
 | 
|    std::unique_ptr<CompositorFrameSink> compositor_frame_sink =
 | 
|        FakeCompositorFrameSink::Create3d();
 | 
| -  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager,
 | 
| -                                  &task_graph_runner);
 | 
| +  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner);
 | 
|    host_impl.SetVisible(true);
 | 
|    EXPECT_TRUE(host_impl.InitializeRenderer(compositor_frame_sink.get()));
 | 
|  
 | 
| @@ -290,12 +285,10 @@ TEST(LayerListIteratorTest, VerifyNullFirstLayerImpl) {
 | 
|  TEST(LayerListReverseIteratorTest, VerifyTraversalOrderImpl) {
 | 
|    // Unfortunate preamble.
 | 
|    FakeImplTaskRunnerProvider task_runner_provider;
 | 
| -  TestSharedBitmapManager shared_bitmap_manager;
 | 
|    TestTaskGraphRunner task_graph_runner;
 | 
|    std::unique_ptr<CompositorFrameSink> compositor_frame_sink =
 | 
|        FakeCompositorFrameSink::Create3d();
 | 
| -  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager,
 | 
| -                                  &task_graph_runner);
 | 
| +  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner);
 | 
|    host_impl.SetVisible(true);
 | 
|    EXPECT_TRUE(host_impl.InitializeRenderer(compositor_frame_sink.get()));
 | 
|  
 | 
| @@ -347,12 +340,10 @@ TEST(LayerListReverseIteratorTest, VerifyTraversalOrderImpl) {
 | 
|  TEST(LayerListReverseIteratorTest, VerifySingleLayerImpl) {
 | 
|    // Unfortunate preamble.
 | 
|    FakeImplTaskRunnerProvider task_runner_provider;
 | 
| -  TestSharedBitmapManager shared_bitmap_manager;
 | 
|    TestTaskGraphRunner task_graph_runner;
 | 
|    std::unique_ptr<CompositorFrameSink> compositor_frame_sink =
 | 
|        FakeCompositorFrameSink::Create3d();
 | 
| -  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &shared_bitmap_manager,
 | 
| -                                  &task_graph_runner);
 | 
| +  FakeLayerTreeHostImpl host_impl(&task_runner_provider, &task_graph_runner);
 | 
|    host_impl.SetVisible(true);
 | 
|    EXPECT_TRUE(host_impl.InitializeRenderer(compositor_frame_sink.get()));
 | 
|  
 | 
| 
 |