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

Side by Side Diff: ipc/ipc_message_utils.h

Issue 244017: Revert 27324 - First step towards NaClChrome integration:1. NaCl plugin becom... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 | « chrome/renderer/render_view.cc ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | 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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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_UTILS_H_ 5 #ifndef IPC_IPC_MESSAGE_UTILS_H_
6 #define IPC_IPC_MESSAGE_UTILS_H_ 6 #define IPC_IPC_MESSAGE_UTILS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 #include <map> 10 #include <map>
(...skipping 26 matching lines...) Expand all
37 PluginMsgStart, 37 PluginMsgStart,
38 PluginHostMsgStart, 38 PluginHostMsgStart,
39 NPObjectMsgStart, 39 NPObjectMsgStart,
40 TestMsgStart, 40 TestMsgStart,
41 DevToolsAgentMsgStart, 41 DevToolsAgentMsgStart,
42 DevToolsClientMsgStart, 42 DevToolsClientMsgStart,
43 WorkerProcessMsgStart, 43 WorkerProcessMsgStart,
44 WorkerProcessHostMsgStart, 44 WorkerProcessHostMsgStart,
45 WorkerMsgStart, 45 WorkerMsgStart,
46 WorkerHostMsgStart, 46 WorkerHostMsgStart,
47 NaClProcessMsgStart,
48 // NOTE: When you add a new message class, also update 47 // NOTE: When you add a new message class, also update
49 // IPCStatusView::IPCStatusView to ensure logging works. 48 // IPCStatusView::IPCStatusView to ensure logging works.
50 // NOTE: this enum is used by IPC_MESSAGE_MACRO to generate a unique message 49 // NOTE: this enum is used by IPC_MESSAGE_MACRO to generate a unique message
51 // id. Only 4 bits are used for the message type, so if this enum needs more 50 // id. Only 4 bits are used for the message type, so if this enum needs more
52 // than 16 entries, that code needs to be updated. 51 // than 16 entries, that code needs to be updated.
53 LastMsgIndex 52 LastMsgIndex
54 }; 53 };
55 54
56 COMPILE_ASSERT(LastMsgIndex <= 16, need_to_update_IPC_MESSAGE_MACRO); 55 COMPILE_ASSERT(LastMsgIndex <= 16, need_to_update_IPC_MESSAGE_MACRO);
57 56
(...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 ReplyParam p(a, b, c, d, e); 1260 ReplyParam p(a, b, c, d, e);
1262 WriteParam(reply, p); 1261 WriteParam(reply, p);
1263 } 1262 }
1264 }; 1263 };
1265 1264
1266 //----------------------------------------------------------------------------- 1265 //-----------------------------------------------------------------------------
1267 1266
1268 } // namespace IPC 1267 } // namespace IPC
1269 1268
1270 #endif // IPC_IPC_MESSAGE_UTILS_H_ 1269 #endif // IPC_IPC_MESSAGE_UTILS_H_
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698