| 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 de55b4b7dc89c17101696db1a93712e5c2ab76a9..37ad943020b3531e7742f46f808b705076740c48 100644
|
| --- a/chrome/service/service_utility_process_host.cc
|
| +++ b/chrome/service/service_utility_process_host.cc
|
| @@ -50,7 +50,7 @@ class ServiceSandboxedProcessLauncherDelegate
|
| private:
|
| base::FilePath exposed_dir_;
|
| };
|
| -}
|
| +} // namespace
|
|
|
| #endif // OS_WIN
|
|
|
| @@ -206,6 +206,10 @@ bool ServiceUtilityProcessHost::OnMessageReceived(const IPC::Message& message) {
|
| return handled;
|
| }
|
|
|
| +base::ProcessHandle ServiceUtilityProcessHost::GetHandle() const {
|
| + return handle_;
|
| +}
|
| +
|
| void ServiceUtilityProcessHost::OnRenderPDFPagesToMetafileSucceeded(
|
| int highest_rendered_page_number,
|
| double scale_factor) {
|
|
|