| Index: cc/debug/micro_benchmark_controller_unittest.cc
|
| diff --git a/cc/debug/micro_benchmark_controller_unittest.cc b/cc/debug/micro_benchmark_controller_unittest.cc
|
| index 30abcc4627f815ee8fd5def476228e1ef7453f40..9d9f48ce4d2f80cc2b9e8868358286af02dde2c1 100644
|
| --- a/cc/debug/micro_benchmark_controller_unittest.cc
|
| +++ b/cc/debug/micro_benchmark_controller_unittest.cc
|
| @@ -26,9 +26,9 @@ class MicroBenchmarkControllerTest : public testing::Test {
|
| void SetUp() override {
|
| impl_task_runner_provider_ =
|
| base::WrapUnique(new FakeImplTaskRunnerProvider);
|
| - layer_tree_host_impl_ = base::WrapUnique(new FakeLayerTreeHostImpl(
|
| + layer_tree_host_impl_ = base::MakeUnique<FakeLayerTreeHostImpl>(
|
| impl_task_runner_provider_.get(), &shared_bitmap_manager_,
|
| - &task_graph_runner_));
|
| + &task_graph_runner_);
|
|
|
| layer_tree_host_ = FakeLayerTreeHost::Create(&layer_tree_host_client_,
|
| &task_graph_runner_);
|
|
|