| Index: cc/trees/layer_tree_host_unittest_scroll.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_scroll.cc b/cc/trees/layer_tree_host_unittest_scroll.cc
|
| index f02e66da7286949f1f34d4a16ee7268a6c5aea79..37d98c17b2f93eccc0f880a7b60b26210bd4385d 100644
|
| --- a/cc/trees/layer_tree_host_unittest_scroll.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_scroll.cc
|
| @@ -1318,15 +1318,14 @@ TEST(LayerTreeHostFlingTest, DidStopFlingingThread) {
|
|
|
| auto animation_host = AnimationHost::CreateForTesting(ThreadInstance::MAIN);
|
|
|
| - LayerTreeHostInProcess::InitParams params;
|
| + LayerTreeHost::InitParams params;
|
| params.client = &layer_tree_host_client;
|
| params.task_graph_runner = &task_graph_runner;
|
| params.settings = &settings;
|
| params.main_task_runner = base::ThreadTaskRunnerHandle::Get();
|
| params.mutator_host = animation_host.get();
|
| - std::unique_ptr<LayerTreeHostInProcess> layer_tree_host =
|
| - LayerTreeHostInProcess::CreateThreaded(impl_thread.task_runner(),
|
| - ¶ms);
|
| + std::unique_ptr<LayerTreeHost> layer_tree_host =
|
| + LayerTreeHost::CreateThreaded(impl_thread.task_runner(), ¶ms);
|
|
|
| ThreadCheckingInputHandlerClient input_handler_client(
|
| impl_thread.task_runner().get(), &received_stop_flinging);
|
|
|