From fb3f066e4f0245d88cd5f6e2c9aca9fe049a86cc Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Tue, 12 Feb 2013 19:12:52 +0000 Subject: 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 --- base/win/win_util.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'base/win') 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. -- cgit v1.1