summaryrefslogtreecommitdiffstats
path: root/content/port
diff options
context:
space:
mode:
authorrockot@google.com <rockot@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-08 20:05:36 +0000
committerrockot@google.com <rockot@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-08 20:05:36 +0000
commitc835ac4c001491ff7a7178a5c8ae22c7024d5ffd (patch)
treee9def535efc2c989a844469c442df65622cb8180 /content/port
parent85b7d0179a152cdf3352f75dde8281c2d9deb41a (diff)
downloadchromium_src-c835ac4c001491ff7a7178a5c8ae22c7024d5ffd.zip
chromium_src-c835ac4c001491ff7a7178a5c8ae22c7024d5ffd.tar.gz
chromium_src-c835ac4c001491ff7a7178a5c8ae22c7024d5ffd.tar.bz2
Revert 233946 "Events ignoring ack disposition receive synthetic..."
android test failures http://build.chromium.org/p/chromium.linux/builders/Android%20Tests%20%28dbg%29/builds/16097 > Events ignoring ack disposition receive synthetic acks. > > Logic to handle events which ignore ack disposition has moved from the > |GestureEventFilter| to the |ImmediateInputRouter|, and |WebInputEventTraits|. > > This will allow us to make more events ignore their ack disposition, including > touch events. > > Gesture event types which will eventually ignore their ack disposition include > Tap, ScrollBegin, PinchBegin, PinchEnd, etc. > > BUG=302852,275611 > TEST=ImmediateInputRouterTest.EventsIgnoringAckDispositionDontWaitForAcks, > ImmediateInputRouterTest.EventsIgnoringAckDispositionStayInOrder > > Review URL: https://codereview.chromium.org/44983003 TBR=tdresser@chromium.org Review URL: https://codereview.chromium.org/66283005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r--content/port/common/input_event_ack_state.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/content/port/common/input_event_ack_state.h b/content/port/common/input_event_ack_state.h
index 087b22f..4458b62 100644
--- a/content/port/common/input_event_ack_state.h
+++ b/content/port/common/input_event_ack_state.h
@@ -11,7 +11,6 @@ namespace content {
enum InputEventAckState {
INPUT_EVENT_ACK_STATE_UNKNOWN,
INPUT_EVENT_ACK_STATE_CONSUMED,
- INPUT_EVENT_ACK_STATE_IGNORED,
INPUT_EVENT_ACK_STATE_NOT_CONSUMED,
INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS,
INPUT_EVENT_ACK_STATE_MAX = INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS