| Index: chrome/browser/ui/gtk/tabs/tab_strip_gtk.h
|
| diff --git a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.h b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.h
|
| index 64f5ee1ed1303c05fefee8e85d9ca28acdd9282a..8f353f8edd2a8b1dc32a6bcde7c9a27a94d59824 100644
|
| --- a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.h
|
| +++ b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.h
|
| @@ -30,6 +30,10 @@ class CustomDrawButton;
|
| class DraggedTabControllerGtk;
|
| class GtkThemeService;
|
|
|
| +namespace gfx {
|
| +class Image;
|
| +}
|
| +
|
| class TabStripGtk : public TabStripModelObserver,
|
| public TabGtk::TabDelegate,
|
| public MessageLoopForUI::Observer,
|
| @@ -234,7 +238,7 @@ class TabStripGtk : public TabStripModelObserver,
|
| GtkWidget* container;
|
|
|
| // The drop indicator image.
|
| - GdkPixbuf* drop_arrow;
|
| + gfx::Image* drop_arrow;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(DropInfo);
|
| @@ -395,7 +399,7 @@ class TabStripGtk : public TabStripModelObserver,
|
|
|
| // Returns the image to use for indicating a drop on a tab. If is_down is
|
| // true, this returns an arrow pointing down.
|
| - static GdkPixbuf* GetDropArrowImage(bool is_down);
|
| + static gfx::Image* GetDropArrowImage(bool is_down);
|
|
|
| // -- Animations -------------------------------------------------------------
|
|
|
|
|