Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
index 4a1ee58f508389df890a7b209b6a4dd1b1e56f21..715668b81f44d87c556f843fcc029ea6e5e835f1 100644 |
--- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
+++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
@@ -27,7 +27,8 @@ constexpr int kSpaceBesideSeparator = 8; |
IconLabelBubbleView::IconLabelBubbleView(const gfx::FontList& font_list, |
bool elide_in_middle) |
: image_(new views::ImageView()), |
- label_(new views::Label(base::string16(), font_list)) { |
+ label_(new views::Label(base::string16(), |
+ views::Label::CustomFont{font_list})) { |
// Disable separate hit testing for |image_|. This prevents views treating |
// |image_| as a separate mouse hover region from |this|. |
image_->set_can_process_events_within_subtree(false); |