| Index: chrome/app/chrome_exe.rc
|
| diff --git a/chrome/app/chrome_exe.rc b/chrome/app/chrome_exe.rc
|
| index abd4734018633a3cb59b0a0270bc208a166cff2d..5c512003a1f442c7a1de20609ea1c630cf8c0369 100644
|
| --- a/chrome/app/chrome_exe.rc
|
| +++ b/chrome/app/chrome_exe.rc
|
| @@ -46,11 +46,17 @@ IDR_SXS ICON "theme\google_chrome\chrome_sxs.
|
| #else
|
| IDR_MAINFRAME ICON "theme\chromium\chromium.ico"
|
| #endif
|
| +
|
| // Icon for the App Lancher. Named with a leading X to keep the name
|
| // alphabetically after IDR_SXS.
|
| -// The SXS icon must have an index of 5 for Chrome and 1 for Chromium, these
|
| -// constants are used in Chrome code to identify it.
|
| -IDR_X_APP_LIST ICON "theme\\app_list.ico"
|
| +#if defined(GOOGLE_CHROME_BUILD)
|
| +// The App Launcher icon must have an index of 5 in Chrome, and 6 for SXS.
|
| +IDR_X_APP_LIST ICON "theme\\google_chrome\\app_list.ico"
|
| +IDR_X_APP_LIST_SXS ICON "theme\\google_chrome\\app_list_sxs.ico"
|
| +#else
|
| +// The App Launcher icon must have an index of 1 for Chromium.
|
| +IDR_X_APP_LIST ICON "theme\\chromium\\app_list.ico"
|
| +#endif
|
|
|
|
|
| /////////////////////////////////////////////////////////////////////////////
|
|
|