| Index: services/ui/public/cpp/gpu_service.cc
|
| diff --git a/services/ui/public/cpp/gpu_service.cc b/services/ui/public/cpp/gpu_service.cc
|
| index a8b73cec2e9f97f6bc8bfd78c3ce0debe8e189e5..a27a24198ff600a4849038124e4139babb36c950 100644
|
| --- a/services/ui/public/cpp/gpu_service.cc
|
| +++ b/services/ui/public/cpp/gpu_service.cc
|
| @@ -65,7 +65,7 @@ void GpuService::EstablishGpuChannel(
|
| if (gpu_service_)
|
| return;
|
|
|
| - connector_->ConnectToInterface("mojo:ui", &gpu_service_);
|
| + connector_->ConnectToInterface("service:ui", &gpu_service_);
|
| gpu_service_->EstablishGpuChannel(
|
| base::Bind(&GpuService::OnEstablishedGpuChannel, base::Unretained(this)));
|
| }
|
| @@ -78,7 +78,7 @@ scoped_refptr<gpu::GpuChannelHost> GpuService::EstablishGpuChannelSync() {
|
| int client_id = 0;
|
| mojo::ScopedMessagePipeHandle channel_handle;
|
| gpu::GPUInfo gpu_info;
|
| - connector_->ConnectToInterface("mojo:ui", &gpu_service_);
|
| + connector_->ConnectToInterface("service:ui", &gpu_service_);
|
|
|
| mojo::SyncCallRestrictions::ScopedAllowSyncCall allow_sync_call;
|
| if (!gpu_service_->EstablishGpuChannel(&client_id, &channel_handle,
|
|
|