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

Unified Diff: content/shell/common/shell_content_client.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « content/shell/browser/shell_win.cc ('k') | content/shell/common/webkit_test_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/common/shell_content_client.cc
diff --git a/content/shell/common/shell_content_client.cc b/content/shell/common/shell_content_client.cc
index 8cb0f88c9180eff7742db8a2d345bbacb45a7938..55f62ddd9425e984fd99d1bccbd8ab7ad05ebf22 100644
--- a/content/shell/common/shell_content_client.cc
+++ b/content/shell/common/shell_content_client.cc
@@ -33,21 +33,21 @@ base::string16 ShellContentClient::GetLocalizedString(int message_id) const {
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) {
switch (message_id) {
case IDS_FORM_OTHER_DATE_LABEL:
- return ASCIIToUTF16("<<OtherDateLabel>>");
+ return base::ASCIIToUTF16("<<OtherDateLabel>>");
case IDS_FORM_OTHER_MONTH_LABEL:
- return ASCIIToUTF16("<<OtherMonthLabel>>");
+ return base::ASCIIToUTF16("<<OtherMonthLabel>>");
case IDS_FORM_OTHER_TIME_LABEL:
- return ASCIIToUTF16("<<OtherTimeLabel>>");
+ return base::ASCIIToUTF16("<<OtherTimeLabel>>");
case IDS_FORM_OTHER_WEEK_LABEL:
- return ASCIIToUTF16("<<OtherWeekLabel>>");
+ return base::ASCIIToUTF16("<<OtherWeekLabel>>");
case IDS_FORM_CALENDAR_CLEAR:
- return ASCIIToUTF16("<<CalendarClear>>");
+ return base::ASCIIToUTF16("<<CalendarClear>>");
case IDS_FORM_CALENDAR_TODAY:
- return ASCIIToUTF16("<<CalendarToday>>");
+ return base::ASCIIToUTF16("<<CalendarToday>>");
case IDS_FORM_THIS_MONTH_LABEL:
- return ASCIIToUTF16("<<ThisMonthLabel>>");
+ return base::ASCIIToUTF16("<<ThisMonthLabel>>");
case IDS_FORM_THIS_WEEK_LABEL:
- return ASCIIToUTF16("<<ThisWeekLabel>>");
+ return base::ASCIIToUTF16("<<ThisWeekLabel>>");
}
}
return l10n_util::GetStringUTF16(message_id);
« no previous file with comments | « content/shell/browser/shell_win.cc ('k') | content/shell/common/webkit_test_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698