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

Unified Diff: services/service_manager/runner/host/service_process_launcher.cc

Issue 2738853002: Connections now take a ConnectionParams instead of a pipe handle. (Closed)
Patch Set: Fix Win release build. Created 3 years, 9 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: services/service_manager/runner/host/service_process_launcher.cc
diff --git a/services/service_manager/runner/host/service_process_launcher.cc b/services/service_manager/runner/host/service_process_launcher.cc
index 759df0064814165287a42b46f70b62aec30cc127..3b92bf66ef83f7763c581126ba8250bcf3860ac7 100644
--- a/services/service_manager/runner/host/service_process_launcher.cc
+++ b/services/service_manager/runner/host/service_process_launcher.cc
@@ -196,8 +196,9 @@ void ServiceProcessLauncher::DoLaunch(
if (mojo_ipc_channel_.get()) {
mojo_ipc_channel_->ChildProcessLaunched();
- process_connection_.Connect(child_process_.Handle(),
- mojo_ipc_channel_->PassServerHandle());
+ process_connection_.Connect(
+ child_process_.Handle(),
+ mojo::edk::ConnectionParams(mojo_ipc_channel_->PassServerHandle()));
}
}
start_child_process_event_.Signal();

Powered by Google App Engine
This is Rietveld 408576698