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

Unified Diff: chrome/installer/util/shell_util.cc

Issue 522008: Fix the Internet link association for the multiple user scenario. (Closed)
Patch Set: Created 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/shell_util.cc
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
index 82d0fb5b79e58377f7a6d987b233fe0f0c842953..18fcf02b151e6fcd9ad8c3fdc151995b11f99c8f 100644
--- a/chrome/installer/util/shell_util.cc
+++ b/chrome/installer/util/shell_util.cc
@@ -168,8 +168,8 @@ class RegistryEntry {
// start->Internet shortcut.
std::wstring start_menu(ShellUtil::kRegStartMenuInternet);
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
- entries->push_front(new RegistryEntry(start_menu,
- dist->GetApplicationName()));
+ std::wstring app_name = dist->GetApplicationName() + suffix;
+ entries->push_front(new RegistryEntry(start_menu, app_name));
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698