diff options
author | pinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 18:54:19 +0000 |
---|---|---|
committer | pinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 18:54:19 +0000 |
commit | c04b6367950900e19ced8d89393d3b870fd837b8 (patch) | |
tree | beb0a0a6a0d2cd60c0d456c0fd4b94cfb4c4b518 /chrome/common/render_messages_internal.h | |
parent | 0eb9f434fb019da43b97c81d7e314885d43af0f9 (diff) | |
download | chromium_src-c04b6367950900e19ced8d89393d3b870fd837b8.zip chromium_src-c04b6367950900e19ced8d89393d3b870fd837b8.tar.gz chromium_src-c04b6367950900e19ced8d89393d3b870fd837b8.tar.bz2 |
Plumb WebCore's windowResizerRect() through glue and renderer. Enables Mac scrollbars to not overlap the in-window resizer widget.
Review URL: http://codereview.chromium.org/11353
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5831 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 02e910d..0d4076c 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1069,11 +1069,17 @@ IPC_BEGIN_MESSAGES(ViewHost, 2) IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, bool /* has_listener */) - // Returns the window location of the window this widget is embeded in. + // Returns the window location of the window this widget is embeded. IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, HWND /* window */, gfx::Rect /* Out: Window location */) + // Returns the resizer box location in the window this widget is embeded. + // Important for Mac OS X, but not Win or Linux. + IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowResizerRect, + HWND /* window */, + gfx::Rect /* Out: Window location */) + // Queries the browser for suggestion for autofill in a form input field. IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, std::wstring /* field name */, |