Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4482)

Unified Diff: chrome/browser/app_icon_win.h

Issue 11778073: Add support for getting the 256x256 app icon on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/win/resource_util.cc ('k') | chrome/browser/app_icon_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/app_icon_win.h
===================================================================
--- chrome/browser/app_icon_win.h (revision 176351)
+++ chrome/browser/app_icon_win.h (working copy)
@@ -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_
« no previous file with comments | « base/win/resource_util.cc ('k') | chrome/browser/app_icon_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698