| Index: content/browser/renderer_host/input/touch_event_queue.cc
|
| diff --git a/content/browser/renderer_host/input/touch_event_queue.cc b/content/browser/renderer_host/input/touch_event_queue.cc
|
| index d0932e6e33939724050c7e5966b84c04e1ab2217..f849b0ecdbd6bb6320cf9dd83dd100ad42b87bd3 100644
|
| --- a/content/browser/renderer_host/input/touch_event_queue.cc
|
| +++ b/content/browser/renderer_host/input/touch_event_queue.cc
|
| @@ -27,6 +27,10 @@
|
| // Time interval at which touchmove events will be forwarded to the client while
|
| // scrolling is active and possible.
|
| const double kAsyncTouchMoveIntervalSec = .2;
|
| +
|
| +// A sanity check on touches received to ensure that touch movement outside
|
| +// the platform slop region will cause scrolling.
|
| +const double kMaxConceivablePlatformSlopRegionLengthDipsSquared = 60. * 60.;
|
|
|
| TouchEventWithLatencyInfo ObtainCancelEventForTouchEvent(
|
| const TouchEventWithLatencyInfo& event_to_cancel) {
|
|
|