Index: chrome/browser/ui/libgtk2ui/gtk2_ui.h |
diff --git a/chrome/browser/ui/libgtk2ui/gtk2_ui.h b/chrome/browser/ui/libgtk2ui/gtk2_ui.h |
index 7e8ca67dd46dbafe1f890445afd02d7096097e38..5d1d681fb7027ba7df941792e22562b1e324c5ab 100644 |
--- a/chrome/browser/ui/libgtk2ui/gtk2_ui.h |
+++ b/chrome/browser/ui/libgtk2ui/gtk2_ui.h |
@@ -40,14 +40,14 @@ class Gtk2UI : public ui::LinuxUI { |
// ui::LinuxUI: |
virtual bool UseNativeTheme() const OVERRIDE; |
- virtual gfx::Image* GetThemeImageNamed(int id) const OVERRIDE; |
+ virtual gfx::Image GetThemeImageNamed(int id) const OVERRIDE; |
virtual bool GetColor(int id, SkColor* color) const OVERRIDE; |
virtual ui::NativeTheme* GetNativeTheme() const OVERRIDE; |
private: |
typedef std::map<int, SkColor> ColorMap; |
typedef std::map<int, color_utils::HSL> TintMap; |
- typedef std::map<int, gfx::Image*> ImageCache; |
+ typedef std::map<int, gfx::Image> ImageCache; |
// This method returns the colors webkit will use for the scrollbars. When no |
// colors are specified by the GTK+ theme, this function averages of the |