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

Unified Diff: chrome/browser/app_icon_win.cc

Issue 8785006: Badge Windows profile shortcuts with multi-user avatar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Addressed rsesek's comments. Created 9 years 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
Index: chrome/browser/app_icon_win.cc
===================================================================
--- chrome/browser/app_icon_win.cc (revision 112717)
+++ chrome/browser/app_icon_win.cc (working copy)
@@ -8,15 +8,30 @@
#include "chrome/common/chrome_constants.h"
#if defined(GOOGLE_CHROME_BUILD)
-#include "chrome/installer/util/browser_distribution.h"
+#include "chrome/installer/util/install_util.h"
#endif
HICON GetAppIcon() {
int icon_id = IDR_MAINFRAME;
#if defined(GOOGLE_CHROME_BUILD)
- if (BrowserDistribution::GetDistribution()->GetIconIndex())
+ if (InstallUtil::IsChromeSxSProcess())
cpu_(ooo_6.6-7.5) 2011/12/05 21:37:34 sorry I might missed this discussion, why this cha
robertshield 2011/12/05 22:55:17 This was done at my request. It appeared that the
SteveT 2011/12/05 22:58:10 robertshield suggested this as IsChromeSxSProcess
icon_id = IDR_SXS;
#endif
return LoadIcon(GetModuleHandle(chrome::kBrowserResourcesDll),
MAKEINTRESOURCE(icon_id));
}
+
+HICON GetAppIconForSize(int size) {
+ int icon_id = IDR_MAINFRAME;
+#if defined(GOOGLE_CHROME_BUILD)
+ if (InstallUtil::IsChromeSxSProcess())
+ icon_id = IDR_SXS;
+#endif
+ return static_cast<HICON>(
+ LoadImage(GetModuleHandle(chrome::kBrowserResourcesDll),
+ MAKEINTRESOURCE(icon_id),
+ IMAGE_ICON,
+ size,
+ size,
+ LR_DEFAULTCOLOR | LR_DEFAULTSIZE));
+}

Powered by Google App Engine
This is Rietveld 408576698