diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-04 04:44:35 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-04 04:44:35 +0000 |
commit | 6e863adaeafffd8fa5f2c6c733c22d9fc0ee17e7 (patch) | |
tree | 4ed828099735d977dd9aff9e5b70a58f3c83ffb7 /chrome/app | |
parent | 1db308f6dff751da5f7b88258966f8c1ad4c1774 (diff) | |
download | chromium_src-6e863adaeafffd8fa5f2c6c733c22d9fc0ee17e7.zip chromium_src-6e863adaeafffd8fa5f2c6c733c22d9fc0ee17e7.tar.gz chromium_src-6e863adaeafffd8fa5f2c6c733c22d9fc0ee17e7.tar.bz2 |
Adds support for models to provide addition icons to the tree. Updates
the bookmarks folder tree model to return custom icons for search and
recently bookmarked.
BUG=674
TEST=none
Review URL: http://codereview.chromium.org/9047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/theme/bookmark_manager_recent.png | bin | 0 -> 535 bytes | |||
-rw-r--r-- | chrome/app/theme/bookmark_manager_search.png | bin | 0 -> 863 bytes | |||
-rw-r--r-- | chrome/app/theme/theme_resources.h | 2 | ||||
-rw-r--r-- | chrome/app/theme/theme_resources.rc | 2 |
4 files changed, 4 insertions, 0 deletions
diff --git a/chrome/app/theme/bookmark_manager_recent.png b/chrome/app/theme/bookmark_manager_recent.png Binary files differnew file mode 100644 index 0000000..c79bdd4 --- /dev/null +++ b/chrome/app/theme/bookmark_manager_recent.png diff --git a/chrome/app/theme/bookmark_manager_search.png b/chrome/app/theme/bookmark_manager_search.png Binary files differnew file mode 100644 index 0000000..76abc27 --- /dev/null +++ b/chrome/app/theme/bookmark_manager_search.png diff --git a/chrome/app/theme/theme_resources.h b/chrome/app/theme/theme_resources.h index a4cba37..03b34f2 100644 --- a/chrome/app/theme/theme_resources.h +++ b/chrome/app/theme/theme_resources.h @@ -314,3 +314,5 @@ #define IDR_PRODUCT_LOGO 9306 #define IDR_DISTRIBUTOR_LOGO 9307 #define IDR_DISTRIBUTOR_LOGO_LIGHT 9308 +#define IDR_BOOKMARK_MANAGER_RECENT_ICON 9309 +#define IDR_BOOKMARK_MANAGER_SEARCH_ICON 9310 diff --git a/chrome/app/theme/theme_resources.rc b/chrome/app/theme/theme_resources.rc index 58c3e8b..9826562 100644 --- a/chrome/app/theme/theme_resources.rc +++ b/chrome/app/theme/theme_resources.rc @@ -303,3 +303,5 @@ IDR_FIND_DLG_RIGHT_BB_BACKGROUND BINDATA "find_dlg_right_bb_bg.png" IDR_FIND_DLG_MIDDLE_BB_BACKGROUND BINDATA "find_dlg_middle_bb_bg.png" IDR_THROBBER_LIGHT BINDATA "throbber_light.png" IDR_OTR_ICON_STANDALONE BINDATA "otr_icon_standalone.png" +IDR_BOOKMARK_MANAGER_RECENT_ICON BINDATA "bookmark_manager_recent.png" +IDR_BOOKMARK_MANAGER_SEARCH_ICON BINDATA "bookmark_manager_search.png" |