| 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 490b6be004ef005c482a6d99c6053a3e21b6a10c..1529a0cbe5cedab9e24a94a244b3840a2ddf72e5 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
|
| @@ -12,7 +12,6 @@
|
| #include "ui/views/controls/image_view.h"
|
| #include "ui/views/painter.h"
|
|
|
| -
|
| IconLabelBubbleView::IconLabelBubbleView(const int background_images[],
|
| const int hover_background_images[],
|
| int contained_image,
|
| @@ -78,6 +77,10 @@ void IconLabelBubbleView::SetImage(const gfx::ImageSkia& image_skia) {
|
| image_->SetImage(image_skia);
|
| }
|
|
|
| +const char* IconLabelBubbleView::GetClassName() const {
|
| + return "IconLabelBubbleView";
|
| +}
|
| +
|
| gfx::Size IconLabelBubbleView::GetPreferredSize() const {
|
| // Height will be ignored by the LocationBarView.
|
| return GetSizeForLabelWidth(label_->GetPreferredSize().width());
|
|
|