Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: chrome/service/service_utility_process_host.cc

Issue 98603007: Launches a privileged utility process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleans up ChildProcessLauncher implementations. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698