diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 01:53:19 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 01:53:19 +0000 |
commit | 124e80b7cf15f9f231881e47eabce005b722c645 (patch) | |
tree | 5167ff52fd84f0d470798720a50cd3330c64cdd2 | |
parent | 7b46c8f2c598b53bd5169cf33430fe329cc44d31 (diff) | |
download | chromium_src-124e80b7cf15f9f231881e47eabce005b722c645.zip chromium_src-124e80b7cf15f9f231881e47eabce005b722c645.tar.gz chromium_src-124e80b7cf15f9f231881e47eabce005b722c645.tar.bz2 |
The PluginHostMsg_CancelResource message is now an async routed message. It does not need to be
a sync message anymore with the stream IPC's now being async.
Review URL: http://codereview.chromium.org/174500
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24582 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/plugin_messages_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/plugin_messages_internal.h b/chrome/common/plugin_messages_internal.h index 4c1b985..ab2ec6f 100644 --- a/chrome/common/plugin_messages_internal.h +++ b/chrome/common/plugin_messages_internal.h @@ -250,8 +250,8 @@ IPC_BEGIN_MESSAGES(PluginHost) IPC_MESSAGE_ROUTED1(PluginHostMsg_URLRequest, PluginHostMsg_URLRequest_Params) - IPC_SYNC_MESSAGE_ROUTED1_0(PluginHostMsg_CancelResource, - int /* id */) + IPC_MESSAGE_ROUTED1(PluginHostMsg_CancelResource, + int /* id */) IPC_MESSAGE_ROUTED1(PluginHostMsg_InvalidateRect, gfx::Rect /* rect */) |