| Index: chrome/browser/favicon/favicon_tab_helper.h
|
| diff --git a/chrome/browser/favicon/favicon_tab_helper.h b/chrome/browser/favicon/favicon_tab_helper.h
|
| index caa54170a8788709d04374f45c2e1e5e21a0616d..1563373e454667e3b30f3988c2bf244b7b830b1d 100644
|
| --- a/chrome/browser/favicon/favicon_tab_helper.h
|
| +++ b/chrome/browser/favicon/favicon_tab_helper.h
|
| @@ -15,6 +15,10 @@
|
| #include "content/public/browser/web_contents_observer.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| +namespace gfx {
|
| +class Image;
|
| +}
|
| +
|
| class FaviconHandler;
|
| class SkBitmap;
|
|
|
| @@ -38,9 +42,9 @@ class FaviconTabHelper : public content::WebContentsObserver,
|
|
|
| // Returns the favicon for this tab, or IDR_DEFAULT_FAVICON if the tab does
|
| // not have a favicon. The default implementation uses the current navigation
|
| - // entry. This will return an isNull bitmap if there are no navigation
|
| + // entry. This will return an empty bitmap if there are no navigation
|
| // entries, which should rarely happen.
|
| - SkBitmap GetFavicon() const;
|
| + gfx::Image GetFavicon() const;
|
|
|
| // Returns true if we have the favicon for the page.
|
| bool FaviconIsValid() const;
|
|
|