summaryrefslogtreecommitdiffstats
path: root/chrome/common/ipc_test_sink.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 /chrome/common/ipc_test_sink.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 'chrome/common/ipc_test_sink.h')
-rw-r--r--chrome/common/ipc_test_sink.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/ipc_test_sink.h b/chrome/common/ipc_test_sink.h
index 995ae38..ec1e70c 100644
--- a/chrome/common/ipc_test_sink.h
+++ b/chrome/common/ipc_test_sink.h
@@ -63,14 +63,14 @@ class TestSink {
// Returns the first message with the given ID in the queue. If there is no
// message with the given ID, returns NULL. The returned pointer will only be
// valid until another message is received or the list is cleared.
- const Message* GetFirstMessageMatching(uint16 id) const;
+ const Message* GetFirstMessageMatching(uint32 id) const;
// Returns the message with the given ID in the queue. If there is no such
// message or there is more than one of that message, this will return NULL
// (with the expectation that you'll do an ASSERT_TRUE() on the result).
// The returned pointer will only be valid until another message is received
// or the list is cleared.
- const Message* GetUniqueMessageMatching(uint16 id) const;
+ const Message* GetUniqueMessageMatching(uint32 id) const;
private:
// The actual list of received messages.