diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-05 23:36:45 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-05 23:36:45 +0000 |
commit | ba3ea0431f89907fbfede1426a6bc944e7c91120 (patch) | |
tree | 2a86f29a22cd30a092858e4d31172f4beb84ea85 /chrome/browser/cocoa/location_bar_view_mac.mm | |
parent | fb5726501682d212e05ab977fa3975b976076b9a (diff) | |
download | chromium_src-ba3ea0431f89907fbfede1426a6bc944e7c91120.zip chromium_src-ba3ea0431f89907fbfede1426a6bc944e7c91120.tar.gz chromium_src-ba3ea0431f89907fbfede1426a6bc944e7c91120.tar.bz2 |
Replace omnibox icons with new set that are all the same size (19x19).
TBR=jnj
BUG=27570
TEST=Type "paypal.com", watch as it loads, ensure address doesn't shift sideways when the lock appears.
Review URL: http://codereview.chromium.org/1560015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43676 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/location_bar_view_mac.mm')
-rw-r--r-- | chrome/browser/cocoa/location_bar_view_mac.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/cocoa/location_bar_view_mac.mm b/chrome/browser/cocoa/location_bar_view_mac.mm index fddf185..7079471 100644 --- a/chrome/browser/cocoa/location_bar_view_mac.mm +++ b/chrome/browser/cocoa/location_bar_view_mac.mm @@ -619,11 +619,11 @@ LocationBarViewMac::StarIconView::StarIconView(CommandUpdater* command_updater) 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]); } |