summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-28 06:03:22 +0000
committerweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-28 06:03:22 +0000
commit43f57972bb875555073b545279284e6d7152d22f (patch)
tree759436c39148a040217a04269d29a66ec48c7811 /remoting
parent336c4bd4e3e4e8fb2034008d99a6ce1cbe45a2df (diff)
downloadchromium_src-43f57972bb875555073b545279284e6d7152d22f.zip
chromium_src-43f57972bb875555073b545279284e6d7152d22f.tar.gz
chromium_src-43f57972bb875555073b545279284e6d7152d22f.tar.bz2
Don't show the console window when the elevated me2me native messaging host is started.
BUG=347763 Review URL: https://codereview.chromium.org/181773009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/host/setup/me2me_native_messaging_host.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/setup/me2me_native_messaging_host.cc b/remoting/host/setup/me2me_native_messaging_host.cc
index a2a2707..02374ef 100644
--- a/remoting/host/setup/me2me_native_messaging_host.cc
+++ b/remoting/host/setup/me2me_native_messaging_host.cc
@@ -623,7 +623,7 @@ void Me2MeNativeMessagingHost::EnsureElevatedHostCreated() {
info.lpVerb = L"runas";
info.lpFile = binary.value().c_str();
info.lpParameters = parameters.c_str();
- info.nShow = SW_SHOWNORMAL;
+ info.nShow = SW_HIDE;
if (!ShellExecuteEx(&info)) {
DWORD error = ::GetLastError();