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

Unified Diff: chrome/service/service_utility_process_host.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: 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 f779bb24bc709bb8db3e78f17c49deccacf26de9..b9b97c52179015bb7dc61707bb95cab4df034dc5 100644
--- a/chrome/service/service_utility_process_host.cc
+++ b/chrome/service/service_utility_process_host.cc
@@ -275,7 +275,9 @@ bool ServiceUtilityProcessHost::Launch(base::CommandLine* cmd_line,
}
if (success)
- process_connection_.Connect(process_.Handle(), std::move(parent_handle));
+ process_connection_.Connect(
+ process_.Handle(),
+ mojo::edk::ConnectionParams(std::move(parent_handle)));
return success;
}
« no previous file with comments | « chrome/browser/chromeos/arc/video/gpu_arc_video_service_host.cc ('k') | chrome/test/base/mojo_test_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698