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

Unified Diff: content/shell/app/shell_breakpad_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/renderer/webclipboard_impl.cc ('k') | content/shell/app/webkit_test_platform_support_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_breakpad_client.cc
diff --git a/content/shell/app/shell_breakpad_client.cc b/content/shell/app/shell_breakpad_client.cc
index 0e7cb95750f697f92d1cf22c6ff1ed4b527333fa..423b89004b6096523d902c8c0d01e94876d166b4 100644
--- a/content/shell/app/shell_breakpad_client.cc
+++ b/content/shell/app/shell_breakpad_client.cc
@@ -27,8 +27,8 @@ void ShellBreakpadClient::GetProductNameAndVersion(
base::string16* version,
base::string16* special_build,
base::string16* channel_name) {
- *product_name = ASCIIToUTF16("content_shell");
- *version = ASCIIToUTF16(CONTENT_SHELL_VERSION);
+ *product_name = base::ASCIIToUTF16("content_shell");
+ *version = base::ASCIIToUTF16(CONTENT_SHELL_VERSION);
*special_build = base::string16();
*channel_name = base::string16();
}
« no previous file with comments | « content/renderer/webclipboard_impl.cc ('k') | content/shell/app/webkit_test_platform_support_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698