Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Unified Diff: ipc/ipc_message_templates.h

Issue 1736643005: Decouple Media Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another try to fix Windows Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« base/tuple.h ('K') | « content/gpu/gpu_child_thread.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« base/tuple.h ('K') | « content/gpu/gpu_child_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698