OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/common/ipc_message_macros.h" | |
6 | |
7 // Messages used for IPC::SyncChannel unit test | |
8 IPC_BEGIN_MESSAGES(SyncChannelTest, 9) | |
9 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_NoArgs) | |
10 | |
11 IPC_SYNC_MESSAGE_CONTROL0_1(SyncChannelTestMsg_AnswerToLife, | |
12 int /* answer */) | |
13 | |
14 IPC_SYNC_MESSAGE_CONTROL1_1(SyncChannelTestMsg_Double, | |
15 int /* in */, | |
16 int /* out */) | |
17 | |
18 IPC_END_MESSAGES(SyncChannelTest) | |
19 | |
OLD | NEW |