Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Unified Diff: chrome/browser/autocomplete/autocomplete.cc

Issue 1560015: Replace omnibox icons with new set that are all the same size (19x19).... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete.cc
===================================================================
--- chrome/browser/autocomplete/autocomplete.cc (revision 43646)
+++ chrome/browser/autocomplete/autocomplete.cc (working copy)
@@ -417,17 +417,17 @@
// static
int AutocompleteMatch::TypeToIcon(Type type) {
int icons[NUM_TYPES] = {
- IDR_O2_GLOBE,
- IDR_O2_GLOBE,
- IDR_O2_HISTORY,
- IDR_O2_HISTORY,
- IDR_O2_HISTORY,
- IDR_O2_GLOBE,
- IDR_O2_SEARCH,
- IDR_O2_SEARCH,
- IDR_O2_SEARCH,
- IDR_O2_SEARCH,
- IDR_O2_MORE,
+ IDR_OMNIBOX_HTTP,
+ IDR_OMNIBOX_HTTP,
+ IDR_OMNIBOX_HISTORY,
+ IDR_OMNIBOX_HISTORY,
+ IDR_OMNIBOX_HISTORY,
+ IDR_OMNIBOX_HTTP,
+ IDR_OMNIBOX_SEARCH,
+ IDR_OMNIBOX_SEARCH,
+ IDR_OMNIBOX_SEARCH,
+ IDR_OMNIBOX_SEARCH,
+ IDR_OMNIBOX_MORE,
};
DCHECK(arraysize(icons) == NUM_TYPES);
return icons[type];
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698