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

Unified Diff: chrome/browser/cocoa/location_bar_view_mac.mm

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
Index: chrome/browser/cocoa/location_bar_view_mac.mm
===================================================================
--- chrome/browser/cocoa/location_bar_view_mac.mm (revision 43646)
+++ chrome/browser/cocoa/location_bar_view_mac.mm (working copy)
@@ -619,11 +619,11 @@
void LocationBarViewMac::StarIconView::SetStarred(bool starred) {
if (starred) {
- SetIcon(IDR_STARRED);
+ SetIcon(IDR_OMNIBOX_STAR_LIT);
tooltip_.reset(
[l10n_util::GetNSStringWithFixup(IDS_TOOLTIP_STARRED) retain]);
} else {
- SetIcon(IDR_STAR);
+ SetIcon(IDR_OMNIBOX_STAR);
tooltip_.reset(
[l10n_util::GetNSStringWithFixup(IDS_TOOLTIP_STAR) retain]);
}
« no previous file with comments | « chrome/browser/cocoa/autocomplete_text_field_unittest.mm ('k') | chrome/browser/gtk/location_bar_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698