| Index: content/gpu/gpu_child_thread.cc
|
| diff --git a/content/gpu/gpu_child_thread.cc b/content/gpu/gpu_child_thread.cc
|
| index 334be83e26deb9936f4c04f5ecc8d1b5105639b0..6056636c6b5d5638b35ae6dad63b906bdcbaf200 100644
|
| --- a/content/gpu/gpu_child_thread.cc
|
| +++ b/content/gpu/gpu_child_thread.cc
|
| @@ -236,12 +236,12 @@ void GpuChildThread::Init(const base::Time& process_start_time) {
|
|
|
| // Use of base::Unretained(this) is safe here because |service_registry()|
|
| // will be destroyed before GpuChildThread is destructed.
|
| - service_registry()->AddService(base::Bind(
|
| + interface_registry()->AddInterface(base::Bind(
|
| &GpuChildThread::BindProcessControlRequest, base::Unretained(this)));
|
|
|
| if (GetContentClient()->gpu()) { // NULL in tests.
|
| GetContentClient()->gpu()->Initialize(this);
|
| - GetContentClient()->gpu()->RegisterMojoServices(service_registry());
|
| + GetContentClient()->gpu()->RegisterMojoInterfaces(interface_registry());
|
| }
|
| }
|
|
|
|
|