diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-01 19:43:10 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-01 19:43:10 +0000 |
commit | 45217a2eb809a1b93d46cf1b8cde358db116aae5 (patch) | |
tree | eb0845e842e2970311c01ee54af0e16efcc583c0 /ipc/ipc_message_macros.h | |
parent | aaf4fe01af9419e6539664c986477a4a026d51c9 (diff) | |
download | chromium_src-45217a2eb809a1b93d46cf1b8cde358db116aae5.zip chromium_src-45217a2eb809a1b93d46cf1b8cde358db116aae5.tar.gz chromium_src-45217a2eb809a1b93d46cf1b8cde358db116aae5.tar.bz2 |
Make Sync Messages with lots of parameters and no return work
There are a couple of broken macros that will be used by the browser plugin.
BUG=none
TEST=compiles (+ local testing with browser plugin)
Review URL: https://chromiumcodereview.appspot.com/10829084
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149466 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_macros.h')
-rw-r--r-- | ipc/ipc_message_macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index 2dc5f20..0fb6b182 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -393,7 +393,7 @@ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 3, 4, (type1_in, type2_in, type3_in), (type1_out, type2_out, type3_out, type4_out)) #define IPC_SYNC_MESSAGE_ROUTED4_0(msg_class, type1_in, type2_in, type3_in, type4_in) \ - IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 4, 1, (type1_in, type2_in, type3_in, type4_in), ()) + IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 4, 0, (type1_in, type2_in, type3_in, type4_in), ()) #define IPC_SYNC_MESSAGE_ROUTED4_1(msg_class, type1_in, type2_in, type3_in, type4_in, type1_out) \ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 4, 1, (type1_in, type2_in, type3_in, type4_in), (type1_out)) @@ -408,7 +408,7 @@ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 4, 4, (type1_in, type2_in, type3_in, type4_in), (type1_out, type2_out, type3_out, type4_out)) #define IPC_SYNC_MESSAGE_ROUTED5_0(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in) \ - IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 5, 1, (type1_in, type2_in, type3_in, type4_in, type5_in), ()) + IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 5, 0, (type1_in, type2_in, type3_in, type4_in, type5_in), ()) #define IPC_SYNC_MESSAGE_ROUTED5_1(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in, type1_out) \ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 5, 1, (type1_in, type2_in, type3_in, type4_in, type5_in), (type1_out)) |