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

Unified Diff: content/browser/child_process_launcher_helper_win.cc

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Created 3 years, 6 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: content/browser/child_process_launcher_helper_win.cc
diff --git a/content/browser/child_process_launcher_helper_win.cc b/content/browser/child_process_launcher_helper_win.cc
index d839c7b8604373b5a14cd7761b35a534c448cc4a..055ea8e681a44453318a2e89ffa234e56c2523b4 100644
--- a/content/browser/child_process_launcher_helper_win.cc
+++ b/content/browser/child_process_launcher_helper_win.cc
@@ -65,7 +65,7 @@ ChildProcessLauncherHelper::LaunchProcessOnLauncherThread(
process.process = base::LaunchElevatedProcess(*command_line(), win_options);
return process;
}
- base::HandlesToInheritVector handles;
+ std::vector<HANDLE> handles;
handles.push_back(mojo_client_handle().handle);
base::FieldTrialList::AppendFieldTrialHandleIfNeeded(&handles);
command_line()->AppendSwitchASCII(

Powered by Google App Engine
This is Rietveld 408576698