| Index: cc/layers/layer_iterator_unittest.cc
|
| diff --git a/cc/layers/layer_iterator_unittest.cc b/cc/layers/layer_iterator_unittest.cc
|
| index 01815f9b36ceca8eb59061ecf8383476ac8285ca..9efa46805e2706aca1c2eaa01a4ae9947c345619 100644
|
| --- a/cc/layers/layer_iterator_unittest.cc
|
| +++ b/cc/layers/layer_iterator_unittest.cc
|
| @@ -93,7 +93,9 @@ void IterateFrontToBack(LayerImplList* render_surface_layer_list) {
|
| class LayerIteratorTest : public testing::Test {
|
| public:
|
| LayerIteratorTest()
|
| - : host_impl_(&proxy_, &shared_bitmap_manager_, &task_graph_runner_),
|
| + : host_impl_(&task_runner_provider_,
|
| + &shared_bitmap_manager_,
|
| + &task_graph_runner_),
|
| id_(1) {}
|
|
|
| scoped_ptr<TestLayerImpl> CreateLayer() {
|
| @@ -101,7 +103,7 @@ class LayerIteratorTest : public testing::Test {
|
| }
|
|
|
| protected:
|
| - FakeImplProxy proxy_;
|
| + FakeImplTaskRunnerProvider task_runner_provider_;
|
| TestSharedBitmapManager shared_bitmap_manager_;
|
| TestTaskGraphRunner task_graph_runner_;
|
| FakeLayerTreeHostImpl host_impl_;
|
|
|