| 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 0764c85c56517db58f61aea7878fe8603bd29217..55f03f1f8a6d0b8a4e8feae761a4d6c6a4d4d487 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
|
| @@ -16,14 +16,14 @@
|
| namespace gfx {
|
| class Canvas;
|
| class Font;
|
| +class ImageSkia;
|
| }
|
| +
|
| namespace views {
|
| class ImageView;
|
| class Label;
|
| }
|
|
|
| -class SkBitmap;
|
| -
|
| // View used to draw a bubble to the left of the address, containing an icon and
|
| // a label. We use this as a base for the classes that handle the EV bubble and
|
| // tab-to-search UI.
|
| @@ -36,7 +36,7 @@ class IconLabelBubbleView : public views::View {
|
|
|
| void SetFont(const gfx::Font& font);
|
| void SetLabel(const string16& label);
|
| - void SetImage(const SkBitmap& bitmap);
|
| + void SetImage(const gfx::ImageSkia& image);
|
| void set_is_extension_icon(bool is_extension_icon) {
|
| is_extension_icon_ = is_extension_icon;
|
| }
|
|
|