Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
index 557973bb97bf7d1313a434cfd8aab6719d5d17e7..ad46081d372069c6f6bb1efe05afafb8affd8d0b 100644 |
--- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
+++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
@@ -28,7 +28,7 @@ class Painter; |
// View used to draw a bubble, containing an icon and a label. We use this as a |
// base for the classes that handle the location icon (including the EV bubble), |
// tab-to-search UI, and content settings. |
-class IconLabelBubbleView : public views::ImageView { |
+class IconLabelBubbleView : public views::View { |
public: |
IconLabelBubbleView(int contained_image, |
const gfx::FontList& font_list, |
@@ -47,6 +47,8 @@ class IconLabelBubbleView : public views::ImageView { |
is_extension_icon_ = is_extension_icon; |
} |
+ const views::ImageView* GetImageView() const { return image_; } |
+ |
protected: |
views::ImageView* image() { return image_; } |
views::Label* label() { return label_; } |