summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_logging.h
diff options
context:
space:
mode:
authorapatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-04 18:08:45 +0000
committerapatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-04 18:08:45 +0000
commit168ae92e90cafe51d7b4d62ce202a8aba093b88c (patch)
treeae330b8e28cc47d1b8dc5824cf01604e31b15be0 /ipc/ipc_logging.h
parent7fe2c0f6df1bf3bd495cf39f2cd7dcb515740455 (diff)
downloadchromium_src-168ae92e90cafe51d7b4d62ce202a8aba093b88c.zip
chromium_src-168ae92e90cafe51d7b4d62ce202a8aba093b88c.tar.gz
chromium_src-168ae92e90cafe51d7b4d62ce202a8aba093b88c.tar.bz2
Added new IPC message class for CommandBuffer.
Increased IPC message header type from 16 bits to 32 bits so it can accomodate more message classes. TEST=none BUG=none Review URL: http://codereview.chromium.org/399013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33832 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_logging.h')
-rw-r--r--ipc/ipc_logging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_logging.h b/ipc/ipc_logging.h
index e3bc33e..ad0559b 100644
--- a/ipc/ipc_logging.h
+++ b/ipc/ipc_logging.h
@@ -65,10 +65,10 @@ class Logging {
// Like the *MsgLog functions declared for each message class, except this
// calls the correct one based on the message type automatically. Defined in
// ipc_logging.cc.
- static void GetMessageText(uint16 type, std::wstring* name,
+ static void GetMessageText(uint32 type, std::wstring* name,
const Message* message, std::wstring* params);
- typedef void (*LogFunction)(uint16 type,
+ typedef void (*LogFunction)(uint32 type,
std::wstring* name,
const Message* msg,
std::wstring* params);