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 f86e8ff2ea8e3a3d438d8a0861fffde26be5a994..151ba757a584857479e0d75d99614ddb36b18eac 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; |
} |