| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "ipc/ipc_message_macros.h" | 7 #include "ipc/ipc_message_macros.h" |
| 8 | 8 |
| 9 #define IPC_MESSAGE_START TestMsgStart | 9 #define IPC_MESSAGE_START TestMsgStart |
| 10 | 10 |
| 11 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs) | 11 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs) |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is | 103 // in1 must be 3, in2 must be "3_3", in3 must be true, out1 is "3_3", out2 is |
| 104 // 33, out3 is false | 104 // 33, out3 is false |
| 105 IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string, | 105 IPC_SYNC_MESSAGE_ROUTED3_3(Msg_R_3_3, int, std::string, bool, std::string, |
| 106 int, bool) | 106 int, bool) |
| 107 | 107 |
| 108 // in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is | 108 // in1 must be true, in2 must be 3, in3 must be "3_4", out1 is 34, out2 is |
| 109 // true, out3 is "3_4", out4 is false | 109 // true, out3 is "3_4", out4 is false |
| 110 IPC_SYNC_MESSAGE_ROUTED3_4(Msg_R_3_4, bool, int, std::string, int, bool, | 110 IPC_SYNC_MESSAGE_ROUTED3_4(Msg_R_3_4, bool, int, std::string, int, bool, |
| 111 std::string, bool) | 111 std::string, bool) |
| 112 |
| 113 IPC_MESSAGE_CONTROL1(SyncChannelTestMsg_Ping, int) |
| 114 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Done) |
| OLD | NEW |