| Index: chrome/installer/util/chrome_frame_distribution.cc
|
| diff --git a/chrome/installer/util/chrome_frame_distribution.cc b/chrome/installer/util/chrome_frame_distribution.cc
|
| index 774ccdf77d1748ca00a50b982df05de50f1889ed..f141c83724052b118299035a2cd57856b6ece47c 100644
|
| --- a/chrome/installer/util/chrome_frame_distribution.cc
|
| +++ b/chrome/installer/util/chrome_frame_distribution.cc
|
| @@ -46,16 +46,18 @@ base::string16 ChromeFrameDistribution::GetBrowserProgIdDesc() {
|
| return base::string16();
|
| }
|
|
|
| +base::string16 ChromeFrameDistribution::GetDisplayName() {
|
| +#if defined(GOOGLE_CHROME_BUILD)
|
| + return L"Google Chrome Frame";
|
| +#else
|
| + return L"Chromium Frame";
|
| +#endif
|
| +}
|
| +
|
| base::string16 ChromeFrameDistribution::GetShortcutName(
|
| ShortcutType shortcut_type) {
|
| - switch (shortcut_type) {
|
| - case SHORTCUT_CHROME:
|
| - case SHORTCUT_CHROME_ALTERNATE:
|
| - return installer::GetLocalizedString(IDS_PRODUCT_FRAME_NAME_BASE);
|
| - default:
|
| - NOTREACHED();
|
| - return base::string16();
|
| - }
|
| + NOTREACHED();
|
| + return base::string16();
|
| }
|
|
|
| base::string16 ChromeFrameDistribution::GetInstallSubDir() {
|
|
|