diff options
author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 04:35:52 +0000 |
---|---|---|
committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 04:35:52 +0000 |
commit | 99002fdf8854d464616a326c2f9b128d3d0195e6 (patch) | |
tree | 216b8da8c7eb1bf5c7f312531c03ddf417693fa7 /chrome/app/chrome_exe.rc | |
parent | bdd947c2fd0a724479f6456fdf2d228f432a3c35 (diff) | |
download | chromium_src-99002fdf8854d464616a326c2f9b128d3d0195e6.zip chromium_src-99002fdf8854d464616a326c2f9b128d3d0195e6.tar.gz chromium_src-99002fdf8854d464616a326c2f9b128d3d0195e6.tar.bz2 |
Add a flag to control whether there is a shortcut for the app list / launcher in the Windows taskbar.
When the flag is on, a shortcut will be created and pinned if it doesn't exist. When it is off, the shortcut will be deleted if it exists.
BUG=158715
Review URL: https://chromiumcodereview.appspot.com/11367002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_exe.rc')
-rw-r--r-- | chrome/app/chrome_exe.rc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/app/chrome_exe.rc b/chrome/app/chrome_exe.rc index 0a8ca06..d9dd131a 100644 --- a/chrome/app/chrome_exe.rc +++ b/chrome/app/chrome_exe.rc @@ -40,10 +40,17 @@ IDR_MAINFRAME ICON "theme\google_chrome\chrome.ico" IDR_MAINFRAME_2 ICON "theme\google_chrome\chrome2.ico" IDR_MAINFRAME_3 ICON "theme\google_chrome\chrome3.ico" IDR_MAINFRAME_4 ICON "theme\google_chrome\chrome4.ico" +// The SXS icon must have an index of 4, the constant is used in Chrome code to +// identify it. IDR_SXS ICON "theme\google_chrome\chrome_sxs.ico" #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" #endif // English (U.S.) resources ///////////////////////////////////////////////////////////////////////////// |