| Index: ipc/ipc_message_utils.cc
|
| diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc
|
| index c5ace243794805e06a5070b12a1afd67782d7ff1..0390648f457cdac301dbd7b4656e8398934c2939 100644
|
| --- a/ipc/ipc_message_utils.cc
|
| +++ b/ipc/ipc_message_utils.cc
|
| @@ -344,7 +344,7 @@ void ParamTraits<std::wstring>::Log(const param_type& p, std::string* l) {
|
| }
|
|
|
| #if !defined(WCHAR_T_IS_UTF16)
|
| -void ParamTraits<string16>::Log(const param_type& p, std::string* l) {
|
| +void ParamTraits<base::string16>::Log(const param_type& p, std::string* l) {
|
| l->append(UTF16ToUTF8(p));
|
| }
|
| #endif
|
| @@ -536,7 +536,7 @@ void ParamTraits<base::NullableString16>::Write(Message* m,
|
| bool ParamTraits<base::NullableString16>::Read(const Message* m,
|
| PickleIterator* iter,
|
| param_type* r) {
|
| - string16 string;
|
| + base::string16 string;
|
| if (!ReadParam(m, iter, &string))
|
| return false;
|
| bool is_null;
|
|
|