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

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

Issue 10246007: Fix GetAppShortcutName to return a localized name for Chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
Index: chrome/installer/util/google_chrome_distribution.cc
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc
index 2c91adfa1671c7c2c452abec15498ca93e14201b..8b569e4cca6b1aea8d45e06df5ff9776bef38cde 100644
--- a/chrome/installer/util/google_chrome_distribution.cc
+++ b/chrome/installer/util/google_chrome_distribution.cc
@@ -426,6 +426,12 @@ std::wstring GoogleChromeDistribution::GetAlternateApplicationName() {
return alt_product_name;
}
+std::wstring GoogleChromeDistribution::GetAppShortCutName() {
grt (UTC plus 2) 2012/04/27 13:00:25 same comment about ordering here.
+ const std::wstring& app_shortcut_name =
+ installer::GetLocalizedString(IDS_PRODUCT_NAME_BASE);
+ return app_shortcut_name;
+}
+
std::wstring GoogleChromeDistribution::GetBrowserAppId() {
return kBrowserAppId;
}

Powered by Google App Engine
This is Rietveld 408576698