OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ipc/ipc_message_macros.h" | 5 #include "ipc/ipc_message_macros.h" |
6 | 6 |
7 IPC_BEGIN_MESSAGES(Test) | 7 IPC_BEGIN_MESSAGES(Test) |
8 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs) | 8 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs) |
9 | 9 |
10 IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelTestMsg_AnswerToLife, | 10 IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelTestMsg_AnswerToLife, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 // in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2 | 89 // in1 must be "3_3", in2 must be false, in3 must be 2, out1 is true, out2 |
90 // is 32 | 90 // is 32 |
91 IPC_SYNC_MESSAGE_ROUTED3_2(Msg_R_3_2, std::string, bool, int, bool, int) | 91 IPC_SYNC_MESSAGE_ROUTED3_2(Msg_R_3_2, std::string, bool, int, bool, int) |
92 | 92 |
93 // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is | 93 // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is |
94 // 33, out3 is false | 94 // 33, out3 is false |
95 IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string, | 95 IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string, |
96 int, bool) | 96 int, bool) |
97 | 97 |
98 IPC_END_MESSAGES(TestMsg) | 98 IPC_END_MESSAGES(Test) |
OLD | NEW |