| Index: content/browser/renderer_host/compositor_impl_android.cc
|
| diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
|
| index ebd54ca69802127c53b0794b8cac909e0a06f70a..752f72344cfa462ec18928f2ab52ce6e54a1641c 100644
|
| --- a/content/browser/renderer_host/compositor_impl_android.cc
|
| +++ b/content/browser/renderer_host/compositor_impl_android.cc
|
| @@ -43,7 +43,7 @@
|
| #include "cc/surfaces/direct_compositor_frame_sink.h"
|
| #include "cc/surfaces/display.h"
|
| #include "cc/surfaces/display_scheduler.h"
|
| -#include "cc/trees/layer_tree_host_in_process.h"
|
| +#include "cc/trees/layer_tree_host.h"
|
| #include "cc/trees/layer_tree_settings.h"
|
| #include "components/display_compositor/compositor_overlay_candidate_validator_android.h"
|
| #include "components/display_compositor/gl_helper.h"
|
| @@ -435,13 +435,13 @@ void CompositorImpl::CreateLayerTreeHost() {
|
|
|
| animation_host_ = cc::AnimationHost::CreateMainInstance();
|
|
|
| - cc::LayerTreeHostInProcess::InitParams params;
|
| + cc::LayerTreeHost::InitParams params;
|
| params.client = this;
|
| params.task_graph_runner = g_task_graph_runner.Pointer();
|
| params.main_task_runner = base::ThreadTaskRunnerHandle::Get();
|
| params.settings = &settings;
|
| params.mutator_host = animation_host_.get();
|
| - host_ = cc::LayerTreeHostInProcess::CreateSingleThreaded(this, ¶ms);
|
| + host_ = cc::LayerTreeHost::CreateSingleThreaded(this, ¶ms);
|
| DCHECK(!host_->IsVisible());
|
| host_->GetLayerTree()->SetRootLayer(root_window_->GetLayer());
|
| host_->SetFrameSinkId(frame_sink_id_);
|
|
|