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 1e623d995e45a689b1e0562fc96cdccab5614868..b7f95aea88230f16e5ec572ad075d55ae281ec20 100644 |
--- a/chrome/installer/util/google_chrome_sxs_distribution.cc |
+++ b/chrome/installer/util/google_chrome_sxs_distribution.cc |
@@ -49,6 +49,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; |
} |