| Index: ipc/ipc_message_utils.cc
|
| diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc
|
| index adb14d1d56c5ef64cbf56e93553989cbe614ee9d..a00e857e798bffc64850c02af2c2bfa3de7e54c0 100644
|
| --- a/ipc/ipc_message_utils.cc
|
| +++ b/ipc/ipc_message_utils.cc
|
| @@ -451,7 +451,7 @@ bool ParamTraits<base::DictionaryValue>::Read(
|
| void ParamTraits<base::DictionaryValue>::Log(const param_type& p,
|
| std::string* l) {
|
| std::string json;
|
| - base::JSONWriter::Write(&p, &json);
|
| + base::JSONWriter::Write(p, &json);
|
| l->append(json);
|
| }
|
|
|
| @@ -533,7 +533,7 @@ bool ParamTraits<base::ListValue>::Read(
|
|
|
| void ParamTraits<base::ListValue>::Log(const param_type& p, std::string* l) {
|
| std::string json;
|
| - base::JSONWriter::Write(&p, &json);
|
| + base::JSONWriter::Write(p, &json);
|
| l->append(json);
|
| }
|
|
|
|
|