summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
authorjam <jam@chromium.org>2015-04-27 08:21:16 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-27 15:21:26 +0000
commit89cdcdeb58101b663c32ba25e07cccd919222dac (patch)
tree20c14e34ff334a9409ab30e22a86161ac4c319d5 /mojo
parent70b0d50a4b2f20457af64a2bffc56a3362b4b009 (diff)
downloadchromium_src-89cdcdeb58101b663c32ba25e07cccd919222dac.zip
chromium_src-89cdcdeb58101b663c32ba25e07cccd919222dac.tar.gz
chromium_src-89cdcdeb58101b663c32ba25e07cccd919222dac.tar.bz2
Fix the mojo_shell window not coming up sometimes on Windows when using --enable-multiprocess.
The problem was that ShowWindow that was eventually called through PlatformViewportWin::Show wasn't working because it was using the default from STARTUPINFO which was false. Review URL: https://codereview.chromium.org/1106133002 Cr-Commit-Position: refs/heads/master@{#327048}
Diffstat (limited to 'mojo')
-rw-r--r--mojo/shell/child_process_host.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/mojo/shell/child_process_host.cc b/mojo/shell/child_process_host.cc
index 97c940b..5f9dbfd 100644
--- a/mojo/shell/child_process_host.cc
+++ b/mojo/shell/child_process_host.cc
@@ -122,7 +122,6 @@ bool ChildProcessHost::DoLaunch() {
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;