diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-15 20:46:32 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-15 20:46:32 +0000 |
commit | 60f143931b79fd3fbcd28ad5125d0bfcce36c1ca (patch) | |
tree | 5fd0ecac9a298aaf8cef5e937d0b49129f8a3fe6 /ipc/ipc_message_macros.h | |
parent | 700b2689e4b981b9d75273497aeeea9a3d325c25 (diff) | |
download | chromium_src-60f143931b79fd3fbcd28ad5125d0bfcce36c1ca.zip chromium_src-60f143931b79fd3fbcd28ad5125d0bfcce36c1ca.tar.gz chromium_src-60f143931b79fd3fbcd28ad5125d0bfcce36c1ca.tar.bz2 |
Move the utility process messages to their own file now that we have more than
16 message types.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/460119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34597 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_macros.h')
-rw-r--r-- | ipc/ipc_message_macros.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index f948791..6346e8c 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -137,11 +137,9 @@ #if defined(IPC_MESSAGE_MACROS_ENUMS) #undef IPC_MESSAGE_MACROS_ENUMS -// TODO(jabdelmalek): we're using the lowest 12 bits of type for the message -// id, and the highest 4 bits for the channel type. This constrains us to -// 16 channel types (currently using 8) and 4K messages per type. Should -// really make type be 32 bits, but then we break automation with older Chrome -// builds.. +// We're using the lowest 16 bits of type for the message id, and the highest +// 16 bits for the channel type. +// // Do label##PreStart so that automation messages keep the same id as before. #define IPC_BEGIN_MESSAGES(label) \ enum label##MsgType { \ |