| Index: content/renderer/android/synchronous_compositor_frame_sink.cc
|
| diff --git a/content/renderer/android/synchronous_compositor_frame_sink.cc b/content/renderer/android/synchronous_compositor_frame_sink.cc
|
| index e2345652ba0989206dc1b38ecde242219746a1f1..cc4b89319fefb9b6f74063ced612737d9c6aab33 100644
|
| --- a/content/renderer/android/synchronous_compositor_frame_sink.cc
|
| +++ b/content/renderer/android/synchronous_compositor_frame_sink.cc
|
| @@ -176,11 +176,13 @@ bool SynchronousCompositorFrameSink::BindToClient(
|
| constexpr bool handles_frame_sink_id_invalidation = true;
|
| constexpr bool needs_sync_points = true;
|
| root_support_.reset(new cc::CompositorFrameSinkSupport(
|
| - this, surface_manager_.get(), kRootFrameSinkId, root_support_is_root,
|
| - handles_frame_sink_id_invalidation, needs_sync_points));
|
| + this, kRootFrameSinkId, root_support_is_root,
|
| + handles_frame_sink_id_invalidation));
|
| + root_support_->Init(surface_manager_.get(), needs_sync_points);
|
| child_support_.reset(new cc::CompositorFrameSinkSupport(
|
| - this, surface_manager_.get(), kChildFrameSinkId, child_support_is_root,
|
| - handles_frame_sink_id_invalidation, needs_sync_points));
|
| + this, kChildFrameSinkId, child_support_is_root,
|
| + handles_frame_sink_id_invalidation));
|
| + child_support_->Init(surface_manager_.get(), needs_sync_points);
|
|
|
| cc::RendererSettings software_renderer_settings;
|
|
|
|
|