| Index: ipc/ipc_message_templates.h
|
| diff --git a/ipc/ipc_message_templates.h b/ipc/ipc_message_templates.h
|
| index 17dfc1b9ff221169167c2f3103089a219e14fa5e..a88f53d2637558c26907f9b1747ba4be298f6a80 100644
|
| --- a/ipc/ipc_message_templates.h
|
| +++ b/ipc/ipc_message_templates.h
|
| @@ -166,7 +166,7 @@ class MessageT<Meta, base::Tuple<Ins...>, base::Tuple<Outs...>>
|
| Message* reply = SyncMessage::GenerateReply(msg);
|
| if (ok) {
|
| ReplyParam reply_params;
|
| - base::DispatchToMethod(obj, func, send_params, &reply_params);
|
| + base::DispatchToMethod(obj, func, parameter, send_params, &reply_params);
|
| WriteParam(reply, reply_params);
|
| LogReplyParamsToMessage(reply_params, msg);
|
| } else {
|
| @@ -188,7 +188,7 @@ class MessageT<Meta, base::Tuple<Ins...>, base::Tuple<Outs...>>
|
| if (ok) {
|
| base::Tuple<Message&> t = base::MakeRefTuple(*reply);
|
| ConnectMessageAndReply(msg, reply);
|
| - base::DispatchToMethod(obj, func, send_params, &t);
|
| + base::DispatchToMethod(obj, func, parameter, send_params, &t);
|
| } else {
|
| NOTREACHED() << "Error deserializing message " << msg->type();
|
| reply->set_reply_error();
|
|
|