diff options
Diffstat (limited to 'chrome/browser/app_icon_win.h')
-rw-r--r-- | chrome/browser/app_icon_win.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/app_icon_win.h b/chrome/browser/app_icon_win.h index 40fee4cf..d15ac6c 100644 --- a/chrome/browser/app_icon_win.h +++ b/chrome/browser/app_icon_win.h @@ -7,11 +7,15 @@ #include <windows.h> +#include "base/memory/scoped_ptr.h" + +class SkBitmap; + HICON GetAppIcon(); // Retrieve the application icon for the given size. Note that if you specify a // size other than what is contained in chrome.dll (16x16, 32x32, 48x48), this -// might return a handle to a poorly resized icon. -HICON GetAppIconForSize(int size); +// might return a poorly resized icon. +scoped_ptr<SkBitmap> GetAppIconForSize(int size); #endif // CHROME_BROWSER_APP_ICON_WIN_H_ |