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

Side by Side Diff: ipc/ipc_message.h

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
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 #ifndef IPC_IPC_MESSAGE_H_ 5 #ifndef IPC_IPC_MESSAGE_H_
6 #define IPC_IPC_MESSAGE_H_ 6 #define IPC_IPC_MESSAGE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 header()->flags); 215 header()->flags);
216 } 216 }
217 // Called to trace when message is received. 217 // Called to trace when message is received.
218 void TraceMessageEnd() { 218 void TraceMessageEnd() {
219 TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC", 219 TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC",
220 header()->flags); 220 header()->flags);
221 } 221 }
222 222
223 protected: 223 protected:
224 friend class Channel; 224 friend class Channel;
225 friend class ChannelMojo;
225 friend class ChannelNacl; 226 friend class ChannelNacl;
226 friend class ChannelPosix; 227 friend class ChannelPosix;
227 friend class ChannelWin; 228 friend class ChannelWin;
228 friend class MessageReplyDeserializer; 229 friend class MessageReplyDeserializer;
229 friend class SyncMessage; 230 friend class SyncMessage;
230 231
231 #pragma pack(push, 4) 232 #pragma pack(push, 4)
232 struct Header : Pickle::Header { 233 struct Header : Pickle::Header {
233 int32 routing; // ID of the view that this message is destined for 234 int32 routing; // ID of the view that this message is destined for
234 uint32 type; // specifies the user-defined message type 235 uint32 type; // specifies the user-defined message type
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 MSG_ROUTING_NONE = -2, 287 MSG_ROUTING_NONE = -2,
287 288
288 // indicates a general message not sent to a particular tab. 289 // indicates a general message not sent to a particular tab.
289 MSG_ROUTING_CONTROL = kint32max, 290 MSG_ROUTING_CONTROL = kint32max,
290 }; 291 };
291 292
292 #define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies 293 #define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies
293 #define IPC_LOGGING_ID 0xFFFFFFF1 // Special message id for logging 294 #define IPC_LOGGING_ID 0xFFFFFFF1 // Special message id for logging
294 295
295 #endif // IPC_IPC_MESSAGE_H_ 296 #endif // IPC_IPC_MESSAGE_H_
OLDNEW
« ipc/ipc_channel.h ('K') | « ipc/ipc_export.h ('k') | ipc/ipc_sync_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698