summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/omnibox/omnibox_popup_model.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/omnibox/omnibox_popup_model.h')
-rw-r--r--chrome/browser/ui/omnibox/omnibox_popup_model.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/ui/omnibox/omnibox_popup_model.h b/chrome/browser/ui/omnibox/omnibox_popup_model.h
index f4b4b23..85934b4 100644
--- a/chrome/browser/ui/omnibox/omnibox_popup_model.h
+++ b/chrome/browser/ui/omnibox/omnibox_popup_model.h
@@ -11,7 +11,10 @@
#include "chrome/browser/ui/omnibox/omnibox_edit_model.h"
class OmniboxPopupView;
-class SkBitmap;
+
+namespace gfx {
+class Image;
+}
class OmniboxPopupModel {
public:
@@ -81,8 +84,8 @@ class OmniboxPopupModel {
void TryDeletingCurrentItem();
// If |match| is from an extension, returns the extension icon; otherwise
- // returns NULL.
- const SkBitmap* GetIconIfExtensionMatch(const AutocompleteMatch& match) const;
+ // returns an empty Image.
+ gfx::Image GetIconIfExtensionMatch(const AutocompleteMatch& match) const;
// The match the user has manually chosen, if any.
const AutocompleteResult::Selection& manually_selected_match() const {