summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 22:39:05 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-10 22:39:05 +0000
commit9243f16e4b6cb242765a82ac4ac6c770472fe297 (patch)
treee3933935341ba0f0faef84f92d0007d66db0cce0
parent563ad175e056edf70d6b4fad486f671f2ee08336 (diff)
downloadchromium_src-9243f16e4b6cb242765a82ac4ac6c770472fe297.zip
chromium_src-9243f16e4b6cb242765a82ac4ac6c770472fe297.tar.gz
chromium_src-9243f16e4b6cb242765a82ac4ac6c770472fe297.tar.bz2
Merge 158935 - Ensure that shortcuts to links open up in metro chrome. We need to invoke ActivateForProtocol
in case the display name is anything other than chrome.exe. BUG=151585 R=cpu Review URL: https://codereview.chromium.org/10969054 TBR=ananta@chromium.org Review URL: https://codereview.chromium.org/11094055 git-svn-id: svn://svn.chromium.org/chrome/branches/1271/src@161218 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--win8/delegate_execute/command_execute_impl.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/win8/delegate_execute/command_execute_impl.cc b/win8/delegate_execute/command_execute_impl.cc
index 943a6d6..eeeae9b 100644
--- a/win8/delegate_execute/command_execute_impl.cc
+++ b/win8/delegate_execute/command_execute_impl.cc
@@ -17,6 +17,7 @@
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
+#include "chrome/installer/util/util_constants.h"
#include "win8/delegate_execute/chrome_util.h"
// CommandExecuteImpl is resposible for activating chrome in Windows 8. The
@@ -201,7 +202,8 @@ STDMETHODIMP CommandExecuteImpl::Execute() {
string16 app_id = delegate_execute::GetAppId(chrome_exe_);
DWORD pid = 0;
- if (launch_scheme_ == INTERNET_SCHEME_FILE) {
+ if (launch_scheme_ == INTERNET_SCHEME_FILE &&
+ display_name_.find(installer::kChromeExe) != string16::npos) {
AtlTrace("Activating for file\n");
hr = activation_manager->ActivateApplication(app_id.c_str(),
verb_.c_str(),
@@ -342,7 +344,7 @@ HRESULT CommandExecuteImpl::LaunchDesktopChrome() {
// should honor it. For e.g. If the user clicks on a html file when
// chrome is the default we should treat it as a parameter to be passed
// to chrome.
- if (display_name.find(L"chrome.exe") != string16::npos)
+ if (display_name.find(installer::kChromeExe) != string16::npos)
display_name.clear();
break;