Chromium Code Reviews| Index: chrome/installer/util/chrome_app_host_distribution.cc |
| diff --git a/chrome/installer/util/chrome_app_host_distribution.cc b/chrome/installer/util/chrome_app_host_distribution.cc |
| index 69eba10625936f6c9a5cdde40b374efb59130c7e..20fe285800c197be3b229ff843628e6a08a69348 100644 |
| --- a/chrome/installer/util/chrome_app_host_distribution.cc |
| +++ b/chrome/installer/util/chrome_app_host_distribution.cc |
| @@ -22,11 +22,6 @@ |
| namespace { |
| -#if defined(GOOGLE_CHROME_BUILD) |
| -const int kAppListIconIndex = 5; |
| -#else |
| -const int kAppListIconIndex = 1; |
| -#endif |
| const wchar_t kChromeAppHostGuid[] = L"{FDA71E6F-AC4C-4a00-8B70-9958A68906BF}"; |
| } // namespace |
| @@ -140,7 +135,7 @@ bool ChromeAppHostDistribution::CanCreateDesktopShortcuts() { |
| } |
| int ChromeAppHostDistribution::GetIconIndex() { |
| - return kAppListIconIndex; |
| + return 0; |
|
gab
2012/11/09 19:29:28
Same icon for Chrome and Chromium builds?!
huangs
2012/11/12 20:00:30
Yes; this was the previous behaviour. However, I'
gab
2012/11/14 21:34:34
Hmmm... this wasn't the previous behavior... the d
gab
2012/11/14 23:47:07
Ping.
huangs
2012/11/15 00:06:38
By behaviour, I meant end result, i.e., the icon.
|
| } |
| bool ChromeAppHostDistribution::GetCommandExecuteImplClsid( |