Index: content/browser/utility_process_host_impl.cc |
diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc |
index fd057ba52a843d9bc6b27335dee2700e1bd3814a..4afd9e93c4feb67c34137489ec732412a724d745 100644 |
--- a/content/browser/utility_process_host_impl.cc |
+++ b/content/browser/utility_process_host_impl.cc |
@@ -227,9 +227,11 @@ bool UtilityProcessHostImpl::Start() { |
return StartProcess(); |
} |
-service_manager::InterfaceProvider* |
-UtilityProcessHostImpl::GetRemoteInterfaces() { |
- return process_->child_connection()->GetRemoteInterfaces(); |
+void UtilityProcessHostImpl::BindInterface( |
+ const std::string& interface_name, |
+ mojo::ScopedMessagePipeHandle interface_pipe) { |
+ process_->child_connection()->BindInterface(interface_name, |
+ std::move(interface_pipe)); |
} |
void UtilityProcessHostImpl::SetName(const base::string16& name) { |