Chromium Code Reviews| Index: chrome/installer/util/google_chrome_distribution_dummy.cc |
| diff --git a/chrome/installer/util/google_chrome_distribution_dummy.cc b/chrome/installer/util/google_chrome_distribution_dummy.cc |
| index 623870c7ea5f03f027effa9def816436a9a319ec..1fa47863e6c350375134d371c9f23e4a4047326c 100644 |
| --- a/chrome/installer/util/google_chrome_distribution_dummy.cc |
| +++ b/chrome/installer/util/google_chrome_distribution_dummy.cc |
| @@ -41,12 +41,7 @@ string16 GoogleChromeDistribution::GetBaseAppName() { |
| return string16(); |
| } |
| -string16 GoogleChromeDistribution::GetAppShortCutName() { |
| - NOTREACHED(); |
| - return string16(); |
| -} |
| - |
| -string16 GoogleChromeDistribution::GetAlternateApplicationName() { |
| +string16 GoogleChromeDistribution::GetShortcutName(ShortcutEnum shortcut_enum) { |
| NOTREACHED(); |
| return string16(); |
| } |
| @@ -147,3 +142,8 @@ bool GoogleChromeDistribution::HasUserExperiments() { |
| NOTREACHED(); |
| return false; |
| } |
| + |
| +int GoogleChromeDistribution::GetIconIndex(ShortcutEnum shortcut_enum) { |
|
gab
2013/06/18 19:50:29
Move above by GetShortcutName() -- to match order
calamity
2013/06/27 01:27:44
Done.
|
| + NOTREACHED(); |
| + return 0; |
| +} |