diff options
author | mgiuca@chromium.org <mgiuca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-20 06:58:40 +0000 |
---|---|---|
committer | mgiuca@chromium.org <mgiuca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-20 06:58:40 +0000 |
commit | 4ded864de44ed95f62d3a9c5a07d2b67a59b4b9b (patch) | |
tree | 94b2522ec2446b45e53cdfe624f4e966dd2197b0 /chrome/app/chrome_exe.rc | |
parent | 0a175bd12a081c7f9e563846052e3fb72e0230b9 (diff) | |
download | chromium_src-4ded864de44ed95f62d3a9c5a07d2b67a59b4b9b.zip chromium_src-4ded864de44ed95f62d3a9c5a07d2b67a59b4b9b.tar.gz chromium_src-4ded864de44ed95f62d3a9c5a07d2b67a59b4b9b.tar.bz2 |
Update references to Mac- and Win-specific icon files in official build.
In the internal repository, several Mac- and Windows-specific icon files
have been moved into 'mac' and 'win' subdirectories in
chrome/app/theme/google_chrome. This updates the references to those
icons to refer to their new location.
BUG=333751
Review URL: https://codereview.chromium.org/138553005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245863 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_exe.rc')
-rw-r--r-- | chrome/app/chrome_exe.rc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/app/chrome_exe.rc b/chrome/app/chrome_exe.rc index 9183541..137d022 100644 --- a/chrome/app/chrome_exe.rc +++ b/chrome/app/chrome_exe.rc @@ -36,13 +36,13 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // icons. To avoid breaking existing shortcuts, add new icons at the end // (following the ordering described above). #if defined(GOOGLE_CHROME_BUILD) -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" +IDR_MAINFRAME ICON "theme\google_chrome\win\chrome.ico" +IDR_MAINFRAME_2 ICON "theme\google_chrome\win\chrome2.ico" +IDR_MAINFRAME_3 ICON "theme\google_chrome\win\chrome3.ico" +IDR_MAINFRAME_4 ICON "theme\google_chrome\win\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" +IDR_SXS ICON "theme\google_chrome\win\chrome_sxs.ico" #else IDR_MAINFRAME ICON "theme\chromium\win\chromium.ico" #endif @@ -51,8 +51,8 @@ IDR_MAINFRAME ICON "theme\chromium\win\chromium.ico // alphabetically after IDR_SXS. #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" +IDR_X_APP_LIST ICON "theme\\google_chrome\\win\\app_list.ico" +IDR_X_APP_LIST_SXS ICON "theme\\google_chrome\\win\\app_list_sxs.ico" #else // The App Launcher icon must have an index of 1 for Chromium. IDR_X_APP_LIST ICON "theme\\chromium\\win\\app_list.ico" |