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

Unified Diff: content/child/child_process.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/child/browser_font_resource_trusted.cc ('k') | content/child/fileapi/webfilesystem_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_process.cc
diff --git a/content/child/child_process.cc b/content/child/child_process.cc
index 837ab02c717a0c6c986c78808dab23b0864f9a46..94341d76aefac543f550268261cd16906746e749 100644
--- a/content/child/child_process.cc
+++ b/content/child/child_process.cc
@@ -116,7 +116,8 @@ void ChildProcess::WaitForDebugger(const std::string& label) {
std::string message = label;
message += " starting with pid: ";
message += base::IntToString(base::GetCurrentProcId());
- ::MessageBox(NULL, UTF8ToWide(message).c_str(), UTF8ToWide(title).c_str(),
+ ::MessageBox(NULL, base::UTF8ToWide(message).c_str(),
+ base::UTF8ToWide(title).c_str(),
MB_OK | MB_SETFOREGROUND);
#elif defined(OS_POSIX)
#if defined(OS_ANDROID)
« no previous file with comments | « content/child/browser_font_resource_trusted.cc ('k') | content/child/fileapi/webfilesystem_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698