diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-13 02:19:25 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-13 02:19:25 +0000 |
commit | 0bc6304b299656d42fe9c286bc897b892ebe4b6e (patch) | |
tree | 8d410421658d19746cd78a61dcc16deefc647782 /build/common.gypi | |
parent | bf3716aa16fd9fc39be2fcd661c9e8b14df4d054 (diff) | |
download | chromium_src-0bc6304b299656d42fe9c286bc897b892ebe4b6e.zip chromium_src-0bc6304b299656d42fe9c286bc897b892ebe4b6e.tar.gz chromium_src-0bc6304b299656d42fe9c286bc897b892ebe4b6e.tar.bz2 |
Revert 96592 - Add scroll and gesture message filters for UIPI Flash.
Flash forwards some window messages when it has no handler set. The only ones I've observed are WM_MOUSEWHEEL and WM_GESTURE (gestures are supported only on Win7). So, we need to allow these messages through the UIPI boundary.
One important note is that I use per-process message filters on Vista, but per-window filters on Win7 or later (because they're supported).
BUG=86810
TEST=None.
Review URL: http://codereview.chromium.org/7617019
TBR=jschuh@chromium.org
Review URL: http://codereview.chromium.org/7648011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96661 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi index 87c0a22..a79a8a0 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1749,8 +1749,8 @@ ['OS=="win"', { 'target_defaults': { 'defines': [ - '_WIN32_WINNT=0x0601', - 'WINVER=0x0601', + '_WIN32_WINNT=0x0600', + 'WINVER=0x0600', 'WIN32', '_WINDOWS', 'NOMINMAX', |