| Index: services/ui/gpu/gpu_service_internal.cc
|
| diff --git a/services/ui/gpu/gpu_service_internal.cc b/services/ui/gpu/gpu_service_internal.cc
|
| index 4be564d8b9de589ccd76b34aa0249aff6fa1ee9e..56a418a61fd22256bbdb600115515cd878538b7a 100644
|
| --- a/services/ui/gpu/gpu_service_internal.cc
|
| +++ b/services/ui/gpu/gpu_service_internal.cc
|
| @@ -50,8 +50,7 @@ GpuServiceInternal::GpuServiceInternal()
|
| shutdown_event_(base::WaitableEvent::ResetPolicy::MANUAL,
|
| base::WaitableEvent::InitialState::NOT_SIGNALED),
|
| gpu_thread_("GpuThread"),
|
| - io_thread_("GpuIOThread"),
|
| - binding_(this) {}
|
| + io_thread_("GpuIOThread") {}
|
|
|
| GpuServiceInternal::~GpuServiceInternal() {
|
| // Signal this event before destroying the child process. That way all
|
| @@ -63,7 +62,7 @@ GpuServiceInternal::~GpuServiceInternal() {
|
| }
|
|
|
| void GpuServiceInternal::Add(mojom::GpuServiceInternalRequest request) {
|
| - binding_.Bind(std::move(request));
|
| + bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|
| void GpuServiceInternal::EstablishGpuChannelInternal(
|
|
|