Index: chrome/installer/util/google_chrome_sxs_distribution.cc |
diff --git a/chrome/installer/util/google_chrome_sxs_distribution.cc b/chrome/installer/util/google_chrome_sxs_distribution.cc |
index 1925f30bcdac3c7fef7df24b0f1b2201b45b8c5a..c4b211466ab3b0feca09f889d42d33ecf72fdb44 100644 |
--- a/chrome/installer/util/google_chrome_sxs_distribution.cc |
+++ b/chrome/installer/util/google_chrome_sxs_distribution.cc |
@@ -53,6 +53,18 @@ string16 GoogleChromeSxSDistribution::GetShortcutName( |
} |
} |
+string16 GoogleChromeSxSDistribution::GetStartMenuShortcutSubfolder( |
+ Subfolder subfolder_type) { |
+ switch (subfolder_type) { |
+ case SUBFOLDER_APPS: |
+ return installer::GetLocalizedString( |
+ IDS_APP_SHORTCUTS_SUBDIR_NAME_CANARY_BASE); |
+ default: |
+ DCHECK_EQ(subfolder_type, SUBFOLDER_CHROME); |
+ return GetShortcutName(SHORTCUT_CHROME); |
+ } |
+} |
+ |
string16 GoogleChromeSxSDistribution::GetBaseAppId() { |
return kBrowserAppId; |
} |