| Index: base/logging.cc
|
| ===================================================================
|
| --- base/logging.cc (revision 28166)
|
| +++ base/logging.cc (working copy)
|
| @@ -40,7 +40,7 @@
|
| #include "base/lock_impl.h"
|
| #include "base/string_piece.h"
|
| #include "base/string_util.h"
|
| -#include "base/sys_string_conversions.h"
|
| +#include "base/utf_string_conversions.h"
|
|
|
| namespace logging {
|
|
|
| @@ -434,7 +434,7 @@
|
| backslash[1] = 0;
|
| wcscat_s(prog_name, MAX_PATH, L"debug_message.exe");
|
|
|
| - std::wstring cmdline = base::SysUTF8ToWide(str);
|
| + std::wstring cmdline = UTF8ToWide(str);
|
| if (cmdline.empty())
|
| return;
|
|
|
| @@ -773,5 +773,5 @@
|
| } // namespace logging
|
|
|
| std::ostream& operator<<(std::ostream& out, const wchar_t* wstr) {
|
| - return out << base::SysWideToUTF8(std::wstring(wstr));
|
| + return out << WideToUTF8(std::wstring(wstr));
|
| }
|
|
|