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

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

Issue 1227413007: Move ReplaceStringPlaceholders to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@join
Patch Set: Created 5 years, 5 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/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/user_experiment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/l10n_string_util.cc
diff --git a/chrome/installer/util/l10n_string_util.cc b/chrome/installer/util/l10n_string_util.cc
index 3e38788b5e47de40ea29169fe566354ae2dbafc4..71963ce0b2683b589bb1768031253f14771b6562 100644
--- a/chrome/installer/util/l10n_string_util.cc
+++ b/chrome/installer/util/l10n_string_util.cc
@@ -57,9 +57,10 @@ std::wstring GetLocalizedString(int base_message_id) {
base::string16 GetLocalizedStringF(int base_message_id,
const base::string16& a) {
- return ReplaceStringPlaceholders(GetLocalizedString(base_message_id),
- std::vector<base::string16>(1, a),
- NULL);
+ return base::ReplaceStringPlaceholders(
+ GetLocalizedString(base_message_id),
+ std::vector<base::string16>(1, a),
+ NULL);
}
// Here we generate the url spec with the Microsoft res:// scheme which is
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/user_experiment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698