summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/location_bar_view_gtk.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-05 23:36:45 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-05 23:36:45 +0000
commitba3ea0431f89907fbfede1426a6bc944e7c91120 (patch)
tree2a86f29a22cd30a092858e4d31172f4beb84ea85 /chrome/browser/gtk/location_bar_view_gtk.cc
parentfb5726501682d212e05ab977fa3975b976076b9a (diff)
downloadchromium_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/gtk/location_bar_view_gtk.cc')
-rw-r--r--chrome/browser/gtk/location_bar_view_gtk.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/gtk/location_bar_view_gtk.cc b/chrome/browser/gtk/location_bar_view_gtk.cc
index 3889fa7..f167651 100644
--- a/chrome/browser/gtk/location_bar_view_gtk.cc
+++ b/chrome/browser/gtk/location_bar_view_gtk.cc
@@ -941,7 +941,8 @@ void LocationBarViewGtk::SetStarred(bool starred) {
void LocationBarViewGtk::UpdateStarIcon() {
gtk_image_set_from_pixbuf(GTK_IMAGE(star_image_),
- theme_provider_->GetPixbufNamed(starred_ ? IDR_STARRED : IDR_STAR));
+ theme_provider_->GetPixbufNamed(
+ starred_ ? IDR_OMNIBOX_STAR_LIT : IDR_OMNIBOX_STAR));
}
void LocationBarViewGtk::AdjustChildrenVisibility() {