Chromium Code Reviews| Index: chrome/browser/profiles/profile_shortcut_manager_win.cc |
| =================================================================== |
| --- chrome/browser/profiles/profile_shortcut_manager_win.cc (revision 180445) |
| +++ chrome/browser/profiles/profile_shortcut_manager_win.cc (working copy) |
| @@ -21,6 +21,7 @@ |
| #include "chrome/browser/profiles/profile_info_cache_observer.h" |
| #include "chrome/browser/profiles/profile_info_util.h" |
| #include "chrome/browser/profiles/profile_manager.h" |
| +#include "chrome/common/chrome_constants.h" |
| #include "chrome/common/chrome_switches.h" |
| #include "chrome/installer/util/browser_distribution.h" |
| #include "chrome/installer/util/product.h" |
| @@ -509,8 +510,10 @@ |
| if (!profile_name.empty()) { |
| shortcut_name.append(SanitizeShortcutProfileNameString(profile_name)); |
| shortcut_name.append(L" - "); |
| + shortcut_name.append(chrome::kBrowserAppName); |
|
sail
2013/02/05 20:30:43
Weird, I've never seen this constant before.
In th
Alexei Svitkine (slow)
2013/02/05 20:56:00
Done.
|
| + } else { |
| + shortcut_name.append(distribution->GetAppShortCutName()); |
| } |
| - shortcut_name.append(distribution->GetAppShortCutName()); |
| return shortcut_name + installer::kLnkExt; |
| } |