summaryrefslogtreecommitdiffstats
path: root/chrome/installer/setup
diff options
context:
space:
mode:
authorgab <gab@chromium.org>2015-08-05 15:48:39 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-05 22:50:02 +0000
commitc1fa2b5ebc2f3cff0420708dee5fdb20e45ddc59 (patch)
treeae0423cd9887e6642ef8a9e57eaed4e7a1679d0a /chrome/installer/setup
parent8054d7869cb9e4022e63649a9335f46a80e3f7a7 (diff)
downloadchromium_src-c1fa2b5ebc2f3cff0420708dee5fdb20e45ddc59.zip
chromium_src-c1fa2b5ebc2f3cff0420708dee5fdb20e45ddc59.tar.gz
chromium_src-c1fa2b5ebc2f3cff0420708dee5fdb20e45ddc59.tar.bz2
Disable Win10 Start Menu pinning for now.
BUG=503682 TEST=Install this build on fresh Win10 install, no Start Menu pin. Install current dev (46.0.2471.2) the same way, Start Menu does get a pin (i.e. verify current code works and is disabled with this CL). Review URL: https://codereview.chromium.org/1276693002 Cr-Commit-Position: refs/heads/master@{#341995}
Diffstat (limited to 'chrome/installer/setup')
-rw-r--r--chrome/installer/setup/install.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/installer/setup/install.cc b/chrome/installer/setup/install.cc
index c6459c0..b0a4e62 100644
--- a/chrome/installer/setup/install.cc
+++ b/chrome/installer/setup/install.cc
@@ -445,7 +445,9 @@ void CreateOrUpdateShortcuts(
shortcut_operation ==
ShellUtil::SHELL_SHORTCUT_CREATE_IF_NO_SYSTEM_LEVEL) {
start_menu_properties.set_pin_to_taskbar(!do_not_create_taskbar_shortcut);
- start_menu_properties.set_pin_to_start(!do_not_create_start_pin);
+ // Disabled for now. TODO(gab): Remove this and the associated code if it
+ // remains disabled long term.
+ start_menu_properties.set_pin_to_start(false);
}
ExecuteAndLogShortcutOperation(
ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR, dist,