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

Unified Diff: services/service_manager/tests/util.cc

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Mojo launcher, review comments Created 3 years, 5 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/tests/util.cc
diff --git a/services/service_manager/tests/util.cc b/services/service_manager/tests/util.cc
index f32503673880dff12bfacc1295d806c9a983e466..a7488dad5b9064396a0e0df16a740059c895a233 100644
--- a/services/service_manager/tests/util.cc
+++ b/services/service_manager/tests/util.cc
@@ -86,9 +86,9 @@ mojom::ConnectResult LaunchAndConnectToProcess(
base::LaunchOptions options;
#if defined(OS_WIN)
- options.handles_to_inherit = &handle_passing_info;
+ options.handles_to_inherit = handle_passing_info;
#elif defined(OS_POSIX)
- options.fds_to_remap = &handle_passing_info;
+ options.fds_to_remap = handle_passing_info;
#endif
*process = base::LaunchProcess(child_command_line, options);
DCHECK(process->IsValid());

Powered by Google App Engine
This is Rietveld 408576698