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) |