| 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 37ab8758f194aab0faf956979c41e8a199871a93..1d70e65f582a2bad1e49ad41cd20a46d4a829a19 100644
|
| --- a/chrome/installer/util/chrome_frame_distribution.cc
|
| +++ b/chrome/installer/util/chrome_frame_distribution.cc
|
| @@ -51,8 +51,7 @@ base::string16 ChromeFrameDistribution::GetDisplayName() {
|
| #endif
|
| }
|
|
|
| -base::string16 ChromeFrameDistribution::GetShortcutName(
|
| - ShortcutType shortcut_type) {
|
| +base::string16 ChromeFrameDistribution::GetShortcutName() {
|
| NOTREACHED();
|
| return base::string16();
|
| }
|
| @@ -88,14 +87,8 @@ base::string16 ChromeFrameDistribution::GetIconFilename() {
|
| return installer::kChromeExe;
|
| }
|
|
|
| -int ChromeFrameDistribution::GetIconIndex(ShortcutType shortcut_type) {
|
| - switch (shortcut_type) {
|
| - case SHORTCUT_CHROME:
|
| - return 0;
|
| - default:
|
| - NOTREACHED();
|
| - return 0;
|
| - }
|
| +int ChromeFrameDistribution::GetIconIndex() {
|
| + return 0;
|
| }
|
|
|
| BrowserDistribution::DefaultBrowserControlPolicy
|
|
|