| Index: chrome/browser/chrome_browser_main_win.cc
|
| diff --git a/chrome/browser/chrome_browser_main_win.cc b/chrome/browser/chrome_browser_main_win.cc
|
| index 0e2e53abc5ebacb9f4a36634b33da13ef294d592..5c90b547c0d0f624634d92d24ea2e18d39c57f09 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -252,11 +252,10 @@
|
| base::FilePath chrome_exe;
|
| if (PathService::Get(base::FILE_EXE, &chrome_exe)) {
|
| ShellUtil::ShortcutLocation user_shortcut_locations[] = {
|
| - ShellUtil::SHORTCUT_LOCATION_DESKTOP,
|
| - ShellUtil::SHORTCUT_LOCATION_QUICK_LAUNCH,
|
| - ShellUtil::SHORTCUT_LOCATION_START_MENU_ROOT,
|
| - ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR_DEPRECATED,
|
| - ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_APPS_DIR,
|
| + ShellUtil::SHORTCUT_LOCATION_DESKTOP,
|
| + ShellUtil::SHORTCUT_LOCATION_QUICK_LAUNCH,
|
| + ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR,
|
| + ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_APPS_DIR,
|
| };
|
| BrowserDistribution* dist = BrowserDistribution::GetDistribution();
|
| for (size_t i = 0; i < arraysize(user_shortcut_locations); ++i) {
|
|
|