diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-02 17:04:55 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-02 17:04:55 +0000 |
commit | 18db46180363c8705c6e21747b97f4beb00bfa01 (patch) | |
tree | e933f71549a0ff6594a16a7d498542512b74cef3 /chrome/common/plugin_messages_internal.h | |
parent | 1350c0f41aa6842ee0e0b28bce2147fd90cec21b (diff) | |
download | chromium_src-18db46180363c8705c6e21747b97f4beb00bfa01.zip chromium_src-18db46180363c8705c6e21747b97f4beb00bfa01.tar.gz chromium_src-18db46180363c8705c6e21747b97f4beb00bfa01.tar.bz2 |
Hide/show cursor according to NSCursor requests.
BUG=http://crbug.com/32703
TEST=when hiding cursor (Flash 10.1), cursor hides (but doesn't stay hidden; that's a different bug)
Review URL: http://codereview.chromium.org/560003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37841 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/plugin_messages_internal.h')
-rw-r--r-- | chrome/common/plugin_messages_internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/common/plugin_messages_internal.h b/chrome/common/plugin_messages_internal.h index b1af5b0..aecccac 100644 --- a/chrome/common/plugin_messages_internal.h +++ b/chrome/common/plugin_messages_internal.h @@ -155,10 +155,15 @@ IPC_BEGIN_MESSAGES(PluginProcessHost) uint32 /* window ID */, gfx::Rect /* window rect */) - // Notifies the browser that a plugin instance has received keyboard focus + // Notifies the browser that a plugin instance has received keyboard focus. IPC_MESSAGE_CONTROL2(PluginProcessHostMsg_PluginReceivedFocus, uint32 /* process ID */, uint32 /* instance ID */) + + // Notifies the browser that a plugin instance has requested a cursor + // visibility change. + IPC_MESSAGE_CONTROL1(PluginProcessHostMsg_PluginSetCursorVisibility, + bool /* cursor visibility */) #endif IPC_END_MESSAGES(PluginProcessHost) |