summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_message_unittest.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-08 23:34:16 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-08 23:34:16 +0000
commit21fa3a157739a857f1882072179f1bd3d978c368 (patch)
tree731cee107cd53590baf4f6f97e273d5378e03e7e /ipc/ipc_sync_message_unittest.h
parent6df403010254c73428c83e553654ce5dafa7dc00 (diff)
downloadchromium_src-21fa3a157739a857f1882072179f1bd3d978c368.zip
chromium_src-21fa3a157739a857f1882072179f1bd3d978c368.tar.gz
chromium_src-21fa3a157739a857f1882072179f1bd3d978c368.tar.bz2
ipc: Simplify the magic required to create IPC message headers.This gets rid of having to include the files in a magic place because of xcode dependency issues, and just makes it simpler to create new IPC message classes. It also gets rid of including the X_messages_internal.h file multiple times, which simplifies things and should make the build a little faster.
In a future change, I will remove the "internal.h" files since they're no longer needed. Review URL: http://codereview.chromium.org/5526008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_sync_message_unittest.h')
-rw-r--r--ipc/ipc_sync_message_unittest.h145
1 files changed, 72 insertions, 73 deletions
diff --git a/ipc/ipc_sync_message_unittest.h b/ipc/ipc_sync_message_unittest.h
index d247428..d5c6905 100644
--- a/ipc/ipc_sync_message_unittest.h
+++ b/ipc/ipc_sync_message_unittest.h
@@ -6,107 +6,106 @@
#include "ipc/ipc_message_macros.h"
-IPC_BEGIN_MESSAGES(Test)
- IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs)
+#define IPC_MESSAGE_START TestMsgStart
- IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelTestMsg_AnswerToLife,
- int /* answer */)
+IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs)
- IPC_SYNC_MESSAGE_CONTROL1_1(SyncChannelTestMsg_Double,
- int /* in */,
- int /* out */)
+IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelTestMsg_AnswerToLife,
+ int /* answer */)
- IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelNestedTestMsg_String,
- std::string)
+IPC_SYNC_MESSAGE_CONTROL1_1(SyncChannelTestMsg_Double,
+ int /* in */,
+ int /* out */)
- // out1 is false
- IPC_SYNC_MESSAGE_CONTROL0_1(Msg_C_0_1, bool)
+IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelNestedTestMsg_String,
+ std::string)
- // out1 is true, out2 is 2
- IPC_SYNC_MESSAGE_CONTROL0_2(Msg_C_0_2, bool, int)
+// out1 is false
+IPC_SYNC_MESSAGE_CONTROL0_1(Msg_C_0_1, bool)
- // out1 is false, out2 is 3, out3 is "0_3"
- IPC_SYNC_MESSAGE_CONTROL0_3(Msg_C_0_3, bool, int, std::string)
+// out1 is true, out2 is 2
+IPC_SYNC_MESSAGE_CONTROL0_2(Msg_C_0_2, bool, int)
- // in1 must be 1, out1 is true
- IPC_SYNC_MESSAGE_CONTROL1_1(Msg_C_1_1, int, bool)
+// out1 is false, out2 is 3, out3 is "0_3"
+IPC_SYNC_MESSAGE_CONTROL0_3(Msg_C_0_3, bool, int, std::string)
- // in1 must be false, out1 is true, out2 is 12
- IPC_SYNC_MESSAGE_CONTROL1_2(Msg_C_1_2, bool, bool, int)
+// in1 must be 1, out1 is true
+IPC_SYNC_MESSAGE_CONTROL1_1(Msg_C_1_1, int, bool)
- // in1 must be 3, out1 is "1_3", out2 is 13, out3 is false
- IPC_SYNC_MESSAGE_CONTROL1_3(Msg_C_1_3, int, std::string, int, bool)
+// in1 must be false, out1 is true, out2 is 12
+IPC_SYNC_MESSAGE_CONTROL1_2(Msg_C_1_2, bool, bool, int)
- // in1 must be 1, in2 must be false, out1 is true
- IPC_SYNC_MESSAGE_CONTROL2_1(Msg_C_2_1, int, bool, bool)
+// in1 must be 3, out1 is "1_3", out2 is 13, out3 is false
+IPC_SYNC_MESSAGE_CONTROL1_3(Msg_C_1_3, int, std::string, int, bool)
- // in1 must be false, in2 must be 2, out1 is true, out2 is 22
- IPC_SYNC_MESSAGE_CONTROL2_2(Msg_C_2_2, bool, int, bool, int)
+// in1 must be 1, in2 must be false, out1 is true
+IPC_SYNC_MESSAGE_CONTROL2_1(Msg_C_2_1, int, bool, bool)
- // in1 must be 3, in2 must be true, out1 is "2_3", out2 is 23, out3 is false
- IPC_SYNC_MESSAGE_CONTROL2_3(Msg_C_2_3, int, bool, std::string, int, bool)
+// in1 must be false, in2 must be 2, out1 is true, out2 is 22
+IPC_SYNC_MESSAGE_CONTROL2_2(Msg_C_2_2, bool, int, bool, int)
- // in1 must be 1, in2 must be false, in3 must be "3_1", out1 is true
- IPC_SYNC_MESSAGE_CONTROL3_1(Msg_C_3_1, int, bool, std::string, bool)
+// in1 must be 3, in2 must be true, out1 is "2_3", out2 is 23, out3 is false
+IPC_SYNC_MESSAGE_CONTROL2_3(Msg_C_2_3, int, bool, std::string, int, bool)
- // in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2 is
- // 32
- IPC_SYNC_MESSAGE_CONTROL3_2(Msg_C_3_2, std::string, bool, int, bool, int)
+// in1 must be 1, in2 must be false, in3 must be "3_1", out1 is true
+IPC_SYNC_MESSAGE_CONTROL3_1(Msg_C_3_1, int, bool, std::string, bool)
- // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is
- // 33, out3 is false
- IPC_SYNC_MESSAGE_CONTROL3_3(Msg_C_3_3, int, std::string, bool, std::string,
- int, bool)
+// in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2 is
+// 32
+IPC_SYNC_MESSAGE_CONTROL3_2(Msg_C_3_2, std::string, bool, int, bool, int)
- // in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is
- // true, out3 is "3_4", out3 is false
- IPC_SYNC_MESSAGE_CONTROL3_4(Msg_C_3_4, bool, int, std::string, int, bool,
- std::string, bool)
+// in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is
+// 33, out3 is false
+IPC_SYNC_MESSAGE_CONTROL3_3(Msg_C_3_3, int, std::string, bool, std::string,
+ int, bool)
- // NOTE: routed messages are just a copy of the above...
+// in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is
+// true, out3 is "3_4", out3 is false
+IPC_SYNC_MESSAGE_CONTROL3_4(Msg_C_3_4, bool, int, std::string, int, bool,
+ std::string, bool)
- // out1 is false
- IPC_SYNC_MESSAGE_ROUTED0_1(Msg_R_0_1, bool)
+// NOTE: routed messages are just a copy of the above...
- // out1 is true, out2 is 2
- IPC_SYNC_MESSAGE_ROUTED0_2(Msg_R_0_2, bool, int)
+// out1 is false
+IPC_SYNC_MESSAGE_ROUTED0_1(Msg_R_0_1, bool)
- // out1 is false, out2 is 3, out3 is "0_3"
- IPC_SYNC_MESSAGE_ROUTED0_3(Msg_R_0_3, bool, int, std::string)
+// out1 is true, out2 is 2
+IPC_SYNC_MESSAGE_ROUTED0_2(Msg_R_0_2, bool, int)
- // in1 must be 1, out1 is true
- IPC_SYNC_MESSAGE_ROUTED1_1(Msg_R_1_1, int, bool)
+// out1 is false, out2 is 3, out3 is "0_3"
+IPC_SYNC_MESSAGE_ROUTED0_3(Msg_R_0_3, bool, int, std::string)
- // in1 must be false, out1 is true, out2 is 12
- IPC_SYNC_MESSAGE_ROUTED1_2(Msg_R_1_2, bool, bool, int)
+// in1 must be 1, out1 is true
+IPC_SYNC_MESSAGE_ROUTED1_1(Msg_R_1_1, int, bool)
- // in1 must be 3, out1 is "1_3", out2 is 13, out3 is false
- IPC_SYNC_MESSAGE_ROUTED1_3(Msg_R_1_3, int, std::string, int, bool)
+// in1 must be false, out1 is true, out2 is 12
+IPC_SYNC_MESSAGE_ROUTED1_2(Msg_R_1_2, bool, bool, int)
- // in1 must be 1, in2 must be false, out1 is true
- IPC_SYNC_MESSAGE_ROUTED2_1(Msg_R_2_1, int, bool, bool)
+// in1 must be 3, out1 is "1_3", out2 is 13, out3 is false
+IPC_SYNC_MESSAGE_ROUTED1_3(Msg_R_1_3, int, std::string, int, bool)
- // in1 must be false, in2 must be 2, out1 is true, out2 is 22
- IPC_SYNC_MESSAGE_ROUTED2_2(Msg_R_2_2, bool, int, bool, int)
+// in1 must be 1, in2 must be false, out1 is true
+IPC_SYNC_MESSAGE_ROUTED2_1(Msg_R_2_1, int, bool, bool)
- // in1 must be 3, in2 must be true, out1 is "2_3", out2 is 23, out3 is false
- IPC_SYNC_MESSAGE_ROUTED2_3(Msg_R_2_3, int, bool, std::string, int, bool)
+// in1 must be false, in2 must be 2, out1 is true, out2 is 22
+IPC_SYNC_MESSAGE_ROUTED2_2(Msg_R_2_2, bool, int, bool, int)
- // in1 must be 1, in2 must be false, in3 must be "3_1", out1 is true
- IPC_SYNC_MESSAGE_ROUTED3_1(Msg_R_3_1, int, bool, std::string, bool)
+// in1 must be 3, in2 must be true, out1 is "2_3", out2 is 23, out3 is false
+IPC_SYNC_MESSAGE_ROUTED2_3(Msg_R_2_3, int, bool, std::string, int, bool)
- // in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2
- // is 32
- IPC_SYNC_MESSAGE_ROUTED3_2(Msg_R_3_2, std::string, bool, int, bool, int)
+// in1 must be 1, in2 must be false, in3 must be "3_1", out1 is true
+IPC_SYNC_MESSAGE_ROUTED3_1(Msg_R_3_1, int, bool, std::string, bool)
- // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is
- // 33, out3 is false
- IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string,
- int, bool)
+// in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2
+// is 32
+IPC_SYNC_MESSAGE_ROUTED3_2(Msg_R_3_2, std::string, bool, int, bool, int)
- // in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is
- // true, out3 is "3_4", out4 is false
- IPC_SYNC_MESSAGE_ROUTED3_4(Msg_R_3_4, bool, int, std::string, int, bool,
- std::string, bool)
+// in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is
+// 33, out3 is false
+IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string,
+ int, bool)
-IPC_END_MESSAGES(Test)
+// in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is
+// true, out3 is "3_4", out4 is false
+IPC_SYNC_MESSAGE_ROUTED3_4(Msg_R_3_4, bool, int, std::string, int, bool,
+ std::string, bool)