diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 19:15:42 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 19:15:42 +0000 |
commit | 66c91de67e9ec5e9281dadc55c234396feff091a (patch) | |
tree | fe2cf4ca567188ef8c1557fe8fedf7bb19d49e2e | |
parent | d25daadf5a186bd2c68cb51a80c7025276b570df (diff) | |
download | chromium_src-66c91de67e9ec5e9281dadc55c234396feff091a.zip chromium_src-66c91de67e9ec5e9281dadc55c234396feff091a.tar.gz chromium_src-66c91de67e9ec5e9281dadc55c234396feff091a.tar.bz2 |
Remove IPC macros for "5_4" messages.
Nobody uses these. Since we don't have tuples for 9 elements, attempts to use them will fail.
TEST=it compiles
BUG=none
Review URL: https://chromiumcodereview.appspot.com/10735092
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146609 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ipc/ipc_message_macros.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index 686655ef..2dc5f20 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -332,9 +332,6 @@ #define IPC_SYNC_MESSAGE_CONTROL5_3(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in, type1_out, type2_out, type3_out) \ IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 5, 3, (type1_in, type2_in, type3_in, type4_in, type5_in), (type1_out, type2_out, type3_out)) -#define IPC_SYNC_MESSAGE_CONTROL5_4(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in, type1_out, type2_out, type3_out, type4_out) \ - IPC_MESSAGE_DECL(SYNC, CONTROL, msg_class, 5, 4, (type1_in, type2_in, type3_in, type4_in, type5_in), (type1_out, type2_out, type3_out, type4_out)) - #define IPC_SYNC_MESSAGE_ROUTED0_0(msg_class) \ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 0, 0, (), ()) @@ -422,9 +419,6 @@ #define IPC_SYNC_MESSAGE_ROUTED5_3(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in, type1_out, type2_out, type3_out) \ IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 5, 3, (type1_in, type2_in, type3_in, type4_in, type5_in), (type1_out, type2_out, type3_out)) -#define IPC_SYNC_MESSAGE_ROUTED5_4(msg_class, type1_in, type2_in, type3_in, type4_in, type5_in, type1_out, type2_out, type3_out, type4_out) \ - IPC_MESSAGE_DECL(SYNC, ROUTED, msg_class, 5, 4, (type1_in, type2_in, type3_in, type4_in, type5_in), (type1_out, type2_out, type3_out, type4_out)) - // The following macros define the common set of methods provided by ASYNC // message classes. #define IPC_ASYNC_MESSAGE_METHODS_GENERIC \ |