Index: chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc |
diff --git a/chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc b/chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc |
index 0c5a187ff5cfb367d826e9a22b22097b412ed281..fdc1cc1061da9e25b5d38fc93b9c5595e97bbfbe 100644 |
--- a/chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc |
+++ b/chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc |
@@ -502,7 +502,7 @@ const gfx::Image* OmniboxPopupViewGtk::IconForMatch( |
if (!ContainsKey(images_, bitmap)) { |
// gfx::Image wants ownership of bitmaps given to it, and we might as |
// well make the bitmap copy a format that will be used. |
- images_[bitmap] = new gfx::Image(gfx::GdkPixbufFromSkBitmap(bitmap)); |
+ images_[bitmap] = new gfx::Image(gfx::GdkPixbufFromSkBitmap(*bitmap)); |
} |
return images_[bitmap]; |
} |