summaryrefslogtreecommitdiffstats
path: root/base/win
diff options
context:
space:
mode:
authorgrt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-18 15:09:02 +0000
committergrt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-18 15:09:02 +0000
commit99850109dd6b08b23f02675af99eccde08cd0b57 (patch)
tree6b6d841b8a639b1c09809f6afd18f3221441d8b4 /base/win
parentc6ff734cef5b4f50bc63cf8cefd180d65405dba9 (diff)
downloadchromium_src-99850109dd6b08b23f02675af99eccde08cd0b57.zip
chromium_src-99850109dd6b08b23f02675af99eccde08cd0b57.tar.gz
chromium_src-99850109dd6b08b23f02675af99eccde08cd0b57.tar.bz2
Always do DelegateExecute handler COM registration and make set dual mode prop on shortcuts.
This is in support of the pre-win8 -> win8 upgrade scenario. BUG=128131,127734 TEST=manual: install on pre-win8 and confirm that the COM registration for the DelegateExecute handler is present in HKCR (Google Chrome: {5C65F4B0-3651-4514-B207-D10CB699B14B} or Chromium: {A2DF06F9-A21A-44A8-8A99-8B9C84F29160}) and that the start menu shortcut has the dual mode juju. Review URL: https://chromiumcodereview.appspot.com/10386167 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137863 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r--base/win/win_util.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/win/win_util.cc b/base/win/win_util.cc
index c72a474..96507d5 100644
--- a/base/win/win_util.cc
+++ b/base/win/win_util.cc
@@ -191,8 +191,6 @@ bool SetAppIdForPropertyStore(IPropertyStore* property_store,
}
bool SetDualModeForPropertyStore(IPropertyStore* property_store) {
- DCHECK_GE(base::win::GetVersion(), base::win::VERSION_WIN8);
-
return SetBooleanValueForPropertyStore(property_store,
PKEY_AppUserModel_DualMode,
true) &&