| Index: ipc/ipc_message_utils.cc
|
| diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc
|
| index 0390648f457cdac301dbd7b4656e8398934c2939..b6524437684768c3b8c8876c8e976bbd17104480 100644
|
| --- a/ipc/ipc_message_utils.cc
|
| +++ b/ipc/ipc_message_utils.cc
|
| @@ -340,12 +340,12 @@ void ParamTraits<std::string>::Log(const param_type& p, std::string* l) {
|
| }
|
|
|
| void ParamTraits<std::wstring>::Log(const param_type& p, std::string* l) {
|
| - l->append(WideToUTF8(p));
|
| + l->append(base::WideToUTF8(p));
|
| }
|
|
|
| #if !defined(WCHAR_T_IS_UTF16)
|
| void ParamTraits<base::string16>::Log(const param_type& p, std::string* l) {
|
| - l->append(UTF16ToUTF8(p));
|
| + l->append(base::UTF16ToUTF8(p));
|
| }
|
| #endif
|
|
|
|
|