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

Unified Diff: chrome/tools/mac_helpers/infoplist_strings_util.mm

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/user_experiment.cc ('k') | cloud_print/service/win/cloud_print_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/mac_helpers/infoplist_strings_util.mm
diff --git a/chrome/tools/mac_helpers/infoplist_strings_util.mm b/chrome/tools/mac_helpers/infoplist_strings_util.mm
index 765969febc97934345093942c7173055d47a8bb7..1a6804c36162e46e8cb0b92c261260f00c29e2b2 100644
--- a/chrome/tools/mac_helpers/infoplist_strings_util.mm
+++ b/chrome/tools/mac_helpers/infoplist_strings_util.mm
@@ -263,9 +263,8 @@ int main(int argc, char* const argv[]) {
std::vector<base::string16> replacements;
replacements.push_back(base::IntToString16(exploded_time.year));
NSString* copyright = base::SysUTF16ToNSString(
- ReplaceStringPlaceholders(base::SysNSStringToUTF16(copyright_format),
- replacements,
- NULL));
+ base::ReplaceStringPlaceholders(
+ base::SysNSStringToUTF16(copyright_format), replacements, NULL));
// For now, assume this is ok for all languages. If we need to, this could
// be moved into generated_resources.grd and fetched.
« no previous file with comments | « chrome/installer/util/user_experiment.cc ('k') | cloud_print/service/win/cloud_print_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698