Index: chrome/service/service_utility_process_host.cc |
diff --git a/chrome/service/service_utility_process_host.cc b/chrome/service/service_utility_process_host.cc |
index b9b97c52179015bb7dc61707bb95cab4df034dc5..7a9edf70f2959693b0c869fe94831dcc426dfdfa 100644 |
--- a/chrome/service/service_utility_process_host.cc |
+++ b/chrome/service/service_utility_process_host.cc |
@@ -332,6 +332,12 @@ const base::Process& ServiceUtilityProcessHost::GetProcess() const { |
return process_; |
} |
+void ServiceUtilityProcessHost::BindInterface( |
+ const std::string& interface_name, |
+ mojo::ScopedMessagePipeHandle interface_pipe) { |
+ child_process_host_->BindInterface(interface_name, std::move(interface_pipe)); |
+} |
+ |
void ServiceUtilityProcessHost::OnMetafileSpooled(bool success) { |
if (!success || pdf_to_emf_state_->OnPageProcessed()) |
OnPDFToEmfFinished(success); |