| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.cc b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| index aba7b08857ada9090683767ae52d9740ebe016f3..4033fd3175f11b22eec0538e44ea65df06ede2ba 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -158,7 +158,6 @@ static const int kSelectedKeywordBackgroundImages[] = {
|
| IDR_LOCATION_BAR_SELECTED_KEYWORD_BACKGROUND_R,
|
| };
|
|
|
| -// TODO(gbillock): replace these with web-intents images when available.
|
| static const int kWIBubbleBackgroundImages[] = {
|
| IDR_OMNIBOX_WI_BUBBLE_BACKGROUND_L,
|
| IDR_OMNIBOX_WI_BUBBLE_BACKGROUND_C,
|
| @@ -291,6 +290,7 @@ void LocationBarView::Init(views::View* popup_parent_view) {
|
| ContentSettingImageView* content_blocked_view =
|
| new ContentSettingImageView(static_cast<ContentSettingsType>(i),
|
| kCSBubbleBackgroundImages, this);
|
| + content_blocked_view->SetFont(font_);
|
| content_setting_views_.push_back(content_blocked_view);
|
| AddChildView(content_blocked_view);
|
| content_blocked_view->SetVisible(false);
|
| @@ -301,6 +301,7 @@ void LocationBarView::Init(views::View* popup_parent_view) {
|
|
|
| web_intents_button_view_ =
|
| new WebIntentsButtonView(this, kWIBubbleBackgroundImages);
|
| + web_intents_button_view_->SetFont(font_);
|
| AddChildView(web_intents_button_view_);
|
|
|
| if (browser_defaults::bookmarks_enabled && (mode_ == NORMAL)) {
|
|
|