From 2e1a4a80ce1c1f986beb6d9ab38bb1a166ccb6d8 Mon Sep 17 00:00:00 2001 From: "gab@chromium.org" Date: Fri, 6 Apr 2012 19:23:11 +0000 Subject: Win 8 Start Menu shortcut changes BUG=119242 TEST=Test DualModeApp properties are correctly set in Windows 8 on Start Menu shortcut. Review URL: http://codereview.chromium.org/9837120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131163 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/first_run/first_run_win.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'chrome/browser/first_run') diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc index b2e0479..257d5d0 100644 --- a/chrome/browser/first_run/first_run_win.cc +++ b/chrome/browser/first_run/first_run_win.cc @@ -122,8 +122,7 @@ bool CreateChromeDesktopShortcut() { chrome_exe.value(), dist->GetIconIndex(), ShellUtil::CURRENT_USER, - false, - true); // create if doesn't exist. + ShellUtil::SHORTCUT_CREATE_ALWAYS); } // Creates the quick launch shortcut to chrome for the current user. Returns @@ -137,7 +136,7 @@ bool CreateChromeQuickLaunchShortcut() { dist, chrome_exe.value(), ShellUtil::CURRENT_USER, // create only for current user. - true); // create if doesn't exist. + ShellUtil::SHORTCUT_CREATE_ALWAYS); } void PlatformSetup(Profile* profile) { -- cgit v1.1