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

Unified Diff: remoting/host/win/unprivileged_process_delegate.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: remoting/host/win/unprivileged_process_delegate.cc
diff --git a/remoting/host/win/unprivileged_process_delegate.cc b/remoting/host/win/unprivileged_process_delegate.cc
index dfff10ca1d69ccb6e1ac517c5ea9578c477e404e..2e2c9144f9d49a12c276f73776993048083fc1fd 100644
--- a/remoting/host/win/unprivileged_process_delegate.cc
+++ b/remoting/host/win/unprivileged_process_delegate.cc
@@ -292,7 +292,7 @@ void UnprivilegedProcessDelegate::LaunchProcess(
base::CommandLine command_line(target_command_->argv());
command_line.AppendSwitchASCII(kMojoPipeToken, mojo_message_pipe_token);
- base::HandlesToInheritVector handles_to_inherit = {
+ std::vector<HANDLE> handles_to_inherit = {
handles.desktop(), handles.window_station(),
};
mojo::edk::PlatformChannelPair mojo_channel;

Powered by Google App Engine
This is Rietveld 408576698