| Index: content/browser/browser_child_process_host_impl.cc
|
| diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc
|
| index 58e571f9648c9e6b02350bb4b01da98076e6412f..1a0af7bb25a86928839b801bda21963225a26e0a 100644
|
| --- a/content/browser/browser_child_process_host_impl.cc
|
| +++ b/content/browser/browser_child_process_host_impl.cc
|
| @@ -278,9 +278,14 @@ void BrowserChildProcessHostImpl::SetHandle(base::ProcessHandle handle) {
|
| data_.handle = handle;
|
| }
|
|
|
| -ServiceRegistry* BrowserChildProcessHostImpl::GetServiceRegistry() {
|
| +shell::InterfaceRegistry* BrowserChildProcessHostImpl::GetInterfaceRegistry() {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| - return delegate_->GetServiceRegistry();
|
| + return delegate_->GetInterfaceRegistry();
|
| +}
|
| +
|
| +shell::InterfaceProvider* BrowserChildProcessHostImpl::GetRemoteInterfaces() {
|
| + DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| + return delegate_->GetRemoteInterfaces();
|
| }
|
|
|
| void BrowserChildProcessHostImpl::ForceShutdown() {
|
|
|