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

Unified Diff: chrome/browser/ui/webui/help/help_handler.cc

Issue 9348012: Help: Fix a crash because of using only a $2 paramter in a string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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 | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/help/help_handler.cc
diff --git a/chrome/browser/ui/webui/help/help_handler.cc b/chrome/browser/ui/webui/help/help_handler.cc
index f4fd3adc939d86981f694271c8ce66fe89c89c59..8747f6ad30c3dda815d7de06e0d945bd29ee2f6e 100644
--- a/chrome/browser/ui/webui/help/help_handler.cc
+++ b/chrome/browser/ui/webui/help/help_handler.cc
@@ -92,8 +92,10 @@ void HelpHandler::GetLocalizedValues(DictionaryValue* localized_strings) {
string16 license = l10n_util::GetStringFUTF16(
IDS_ABOUT_VERSION_LICENSE,
+#if !defined(OS_CHROMEOS)
UTF8ToUTF16(google_util::StringAppendGoogleLocaleParam(
chrome::kChromiumProjectURL)),
+#endif
ASCIIToUTF16(chrome::kChromeUICreditsURL));
localized_strings->SetString("productLicense", license);
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698