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

Unified Diff: chrome/installer/setup/install.cc

Issue 8785006: Badge Windows profile shortcuts with multi-user avatar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/installer/setup/install.cc
===================================================================
--- chrome/installer/setup/install.cc (revision 112717)
+++ chrome/installer/setup/install.cc (working copy)
@@ -182,6 +182,7 @@
if (installer_state.system_install()) {
grt (UTC plus 2) 2011/12/03 04:14:00 suggest fix the fact that this says the same thing
SteveT 2011/12/03 05:07:09 Done done.
ret = ShellUtil::CreateChromeDesktopShortcut(product.distribution(),
grt (UTC plus 2) 2011/12/03 04:14:00 replace all 6 occurrences of "product.distribution
SteveT 2011/12/03 05:07:09 Done.
chrome_exe.value(), product_desc, L"", L"", ShellUtil::SYSTEM_LEVEL,
+ chrome_exe.value(), product.distribution()->GetIconIndex(),
alt_shortcut, create_all_shortcut);
if (ret) {
ret = ShellUtil::CreateChromeQuickLaunchShortcut(
@@ -192,6 +193,7 @@
} else {
ret = ShellUtil::CreateChromeDesktopShortcut(product.distribution(),
chrome_exe.value(), product_desc, L"", L"", ShellUtil::CURRENT_USER,
+ chrome_exe.value(), product.distribution()->GetIconIndex(),
alt_shortcut, create_all_shortcut);
if (ret) {
ret = ShellUtil::CreateChromeQuickLaunchShortcut(

Powered by Google App Engine
This is Rietveld 408576698