diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 19:12:52 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 19:12:52 +0000 |
commit | fb3f066e4f0245d88cd5f6e2c9aca9fe049a86cc (patch) | |
tree | 9aec6c43dad04dd4f635d836db29e38767524040 /base/win | |
parent | 3d944a8430e2b872fccfd3ddd8fd00db07256baa (diff) | |
download | chromium_src-fb3f066e4f0245d88cd5f6e2c9aca9fe049a86cc.zip chromium_src-fb3f066e4f0245d88cd5f6e2c9aca9fe049a86cc.tar.gz chromium_src-fb3f066e4f0245d88cd5f6e2c9aca9fe049a86cc.tar.bz2 |
Make zoom using ctrl+mouse wheel work in win aura. Windows non-aura had a hack that was a layering violation which sent a custom win32 message from RenderWidgetHostViewWin to WebContentsViewWin. Instead do this properly from RenderWidgetHostImpl to its delegate (WebContentsImpl), which works for both aura and non-aura windows builds.
BUG=175055
Review URL: https://codereview.chromium.org/12221144
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181965 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r-- | base/win/win_util.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/base/win/win_util.h b/base/win/win_util.h index f13bf20..0404ef0 100644 --- a/base/win/win_util.h +++ b/base/win/win_util.h @@ -36,14 +36,6 @@ typedef _tagpropertykey PROPERTYKEY; namespace base { namespace win { -// A Windows message reflected from other windows. This message is sent -// with the following arguments: -// hWnd - Target window -// uMsg - kReflectedMessage -// wParam - Should be 0 -// lParam - Pointer to MSG struct containing the original message. -const int kReflectedMessage = WM_APP + 3; - BASE_EXPORT void GetNonClientMetrics(NONCLIENTMETRICS* metrics); // Returns the string representing the current user sid. |