Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: ipc/ipc_sync_message_unittest.h

Issue 9960058: ipc: don't treat replies with the unblock flag set as regular messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git try Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ipc/ipc_sync_channel_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 112
113 IPC_MESSAGE_CONTROL1(SyncChannelTestMsg_Ping, int) 113 IPC_MESSAGE_CONTROL1(SyncChannelTestMsg_Ping, int)
114 IPC_SYNC_MESSAGE_CONTROL1_1(SyncChannelTestMsg_PingTTL, int, int) 114 IPC_SYNC_MESSAGE_CONTROL1_1(SyncChannelTestMsg_PingTTL, int, int)
115 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Done) 115 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Done)
116
117 // Messages for ReentrantReply test.
118 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Reentrant1)
119 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Reentrant2)
120 IPC_SYNC_MESSAGE_CONTROL0_0(SyncChannelTestMsg_Reentrant3)
OLDNEW
« no previous file with comments | « ipc/ipc_sync_channel_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698