Chromium Code Reviews| Index: chrome/installer/util/browser_distribution.cc |
| diff --git a/chrome/installer/util/browser_distribution.cc b/chrome/installer/util/browser_distribution.cc |
| index 26f5a2f9b0c7994d9f84ad8a8329965bd66c4574..8b9bdb4372ed48660a9df8299c3bc7c461a885a4 100644 |
| --- a/chrome/installer/util/browser_distribution.cc |
| +++ b/chrome/installer/util/browser_distribution.cc |
| @@ -225,7 +225,12 @@ bool BrowserDistribution::CanCreateDesktopShortcuts() { |
| return true; |
| } |
| +string16 BrowserDistribution::GetIconFilename() { |
| + return string16(); |
| +} |
| + |
| int BrowserDistribution::GetIconIndex() { |
| + // Assuming that main icon appears first alphabetically (e.g., IDR_MAINFRAME). |
|
gab
2012/11/14 21:34:34
What do you think of:
... appears first alphabetic
huangs
2012/11/14 21:57:01
Sounds good. Done.
|
| return 0; |
| } |