diff options
author | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-29 01:52:16 +0000 |
---|---|---|
committer | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-29 01:52:16 +0000 |
commit | 80e8c0fc6ace36a45d0fc7bef1c52f920d6fe522 (patch) | |
tree | 34a0ff927e8dce1d0493d02e71638ca47ad31b70 /content/common/input | |
parent | 425f7a0afb038772bf0d1bfb007a1ccb13dfae35 (diff) | |
download | chromium_src-80e8c0fc6ace36a45d0fc7bef1c52f920d6fe522.zip chromium_src-80e8c0fc6ace36a45d0fc7bef1c52f920d6fe522.tar.gz chromium_src-80e8c0fc6ace36a45d0fc7bef1c52f920d6fe522.tar.bz2 |
[Android] Reland "Provide unhandled tap event notifications"
Allow notifications of unhandled taps via the GestureStateListener. This change
makes GestureTap events blocking, but there are several use-cases for which this
will be necessary, e.g., WebView and contextual search.
This was landed in r26143 and reverted in r261470 due to to a failure in
TouchEditableImplAuraTest.TouchCursorInTextfieldTest. The test has been fixed
and reviewed previously in crrev.com/218633008.
BUG=355154
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/256213002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/input')
-rw-r--r-- | content/common/input/web_input_event_traits.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/content/common/input/web_input_event_traits.cc b/content/common/input/web_input_event_traits.cc index df4513e..4dcd4ba 100644 --- a/content/common/input/web_input_event_traits.cc +++ b/content/common/input/web_input_event_traits.cc @@ -344,7 +344,6 @@ bool WebInputEventTraits::IgnoresAckDisposition(const WebInputEvent& event) { case WebInputEvent::GestureScrollBegin: case WebInputEvent::GestureScrollEnd: case WebInputEvent::GestureShowPress: - case WebInputEvent::GestureTap: case WebInputEvent::GestureTapUnconfirmed: case WebInputEvent::GestureTapDown: case WebInputEvent::GestureTapCancel: |