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

Unified Diff: shell/child_process_host.cc

Issue 1045893004: Remove is_win/OS_WIN checks in shell code (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « shell/application_manager/local_fetcher.cc ('k') | shell/command_line_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/child_process_host.cc
diff --git a/shell/child_process_host.cc b/shell/child_process_host.cc
index 6d8cf8ae75f5034a8f3822cb5ea79e60737b5e45..2085be4a9d8472fc389f30fd9520495a6df72c3c 100644
--- a/shell/child_process_host.cc
+++ b/shell/child_process_host.cc
@@ -75,12 +75,7 @@ bool ChildProcessHost::DoLaunch() {
&child_command_line, &handle_passing_info);
base::LaunchOptions options;
-#if defined(OS_WIN)
- options.start_hidden = true;
- options.handles_to_inherit = &handle_passing_info;
-#elif defined(OS_POSIX)
options.fds_to_remap = &handle_passing_info;
-#endif
child_process_ = base::LaunchProcess(child_command_line, options);
if (!child_process_.IsValid())
return false;
« no previous file with comments | « shell/application_manager/local_fetcher.cc ('k') | shell/command_line_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698