| Index: content/browser/renderer_host/input/tap_suppression_controller_client.h
|
| diff --git a/content/browser/renderer_host/input/tap_suppression_controller_client.h b/content/browser/renderer_host/input/tap_suppression_controller_client.h
|
| index 075fa08d3b5512db58f19bac6fbbb916352eacce..fcea0e1f58e274eddd936511eadce14b356881e7 100644
|
| --- a/content/browser/renderer_host/input/tap_suppression_controller_client.h
|
| +++ b/content/browser/renderer_host/input/tap_suppression_controller_client.h
|
| @@ -12,6 +12,14 @@
|
| class TapSuppressionControllerClient {
|
| public:
|
| virtual ~TapSuppressionControllerClient() {}
|
| +
|
| + // Derived classes should implement this function to return the maximum time
|
| + // they allow between a GestureFlingCancel and its corresponding tap down.
|
| + virtual int MaxCancelToDownTimeInMs() = 0;
|
| +
|
| + // Derived classes should implement this function to return the maximum time
|
| + // they allow between a single tap's down and up events.
|
| + virtual int MaxTapGapTimeInMs() = 0;
|
|
|
| // Called whenever the deferred tap down (if saved) should be dropped totally.
|
| virtual void DropStashedTapDown() = 0;
|
|
|