diff options
author | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 18:08:45 +0000 |
---|---|---|
committer | apatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 18:08:45 +0000 |
commit | 168ae92e90cafe51d7b4d62ce202a8aba093b88c (patch) | |
tree | ae330b8e28cc47d1b8dc5824cf01604e31b15be0 /chrome/common/appcache | |
parent | 7fe2c0f6df1bf3bd495cf39f2cd7dcb515740455 (diff) | |
download | chromium_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/appcache')
-rw-r--r-- | chrome/common/appcache/appcache_dispatcher_host.cc | 2 | ||||
-rw-r--r-- | chrome/common/appcache/appcache_dispatcher_host.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/appcache/appcache_dispatcher_host.cc b/chrome/common/appcache/appcache_dispatcher_host.cc index 854d5d8..f6c316b 100644 --- a/chrome/common/appcache/appcache_dispatcher_host.cc +++ b/chrome/common/appcache/appcache_dispatcher_host.cc @@ -188,7 +188,7 @@ void AppCacheDispatcherHost::SwapCacheCallback(bool result, void* param) { frontend_proxy_.sender()->Send(pending_reply_msg_.release()); } -void AppCacheDispatcherHost::ReceivedBadMessage(uint16 msg_type) { +void AppCacheDispatcherHost::ReceivedBadMessage(uint32 msg_type) { // TODO(michaeln): Consider gathering UMA stats // http://code.google.com/p/chromium/issues/detail?id=24634 BrowserRenderProcessHost::BadMessageTerminateProcess( diff --git a/chrome/common/appcache/appcache_dispatcher_host.h b/chrome/common/appcache/appcache_dispatcher_host.h index 7b04b9c..9ad46fb 100644 --- a/chrome/common/appcache/appcache_dispatcher_host.h +++ b/chrome/common/appcache/appcache_dispatcher_host.h @@ -54,7 +54,7 @@ class AppCacheDispatcherHost { void StartUpdateCallback(bool result, void* param); void SwapCacheCallback(bool result, void* param); - void ReceivedBadMessage(uint16 msg_type); + void ReceivedBadMessage(uint32 msg_type); AppCacheFrontendProxy frontend_proxy_; appcache::AppCacheBackendImpl backend_impl_; |