diff options
author | mohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 17:26:10 +0000 |
---|---|---|
committer | mohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 17:26:10 +0000 |
commit | 051c02a5be40b5eb9e41f6892b3f1b22652c017e (patch) | |
tree | c275d4161800284f2f442f5c149c2b251e99a07e /content/browser/renderer_host/tap_suppression_controller.h | |
parent | d562480157683aafd9dca651d48d18f2ea87e220 (diff) | |
download | chromium_src-051c02a5be40b5eb9e41f6892b3f1b22652c017e.zip chromium_src-051c02a5be40b5eb9e41f6892b3f1b22652c017e.tar.gz chromium_src-051c02a5be40b5eb9e41f6892b3f1b22652c017e.tar.bz2 |
Suppress sending mousedown / mouseup when in fling
Tapping on the touchpad during a fling should stop the scroll, but
should not generate mousedown and mouseup events.
TapSuppressionController is used to suppress mousedown / mouseup events
in this case.
BUG=152287
Review URL: https://chromiumcodereview.appspot.com/11361150
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169979 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/tap_suppression_controller.h')
-rw-r--r-- | content/browser/renderer_host/tap_suppression_controller.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/browser/renderer_host/tap_suppression_controller.h b/content/browser/renderer_host/tap_suppression_controller.h index ea2f2c0..84a7c48 100644 --- a/content/browser/renderer_host/tap_suppression_controller.h +++ b/content/browser/renderer_host/tap_suppression_controller.h @@ -11,6 +11,7 @@ namespace content { +class MockRenderWidgetHost; class RenderWidgetHostImpl; // Controls the suppression of taps (rapid mousedown/mouseup sequences) @@ -41,6 +42,8 @@ class TapSuppressionController { void GestureFlingCancel(double cancel_time); private: + friend class MockRenderWidgetHost; + enum State { NOTHING, GFC_IN_PROGRESS, |