// Copyright 2015 The Chromium Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.// Modeled after Android's ViewConfiguration:// https://github.com/android/platform_frameworks_base/blob/master/core/java/android/view/ViewConfiguration.javaconstDurationkLongPressTimeout=constDuration(milliseconds:500);constDurationkTapTimeout=constDuration(milliseconds:100);constDurationkJumpTapTimeout=constDuration(milliseconds:500);constDurationkDoubleTapTimeout=constDuration(milliseconds:300);constDurationkDoubleTapMinTime=constDuration(milliseconds:40);constDurationkHoverTapTimeout=constDuration(milliseconds:150);constDurationkZoomControlsTimeout=constDuration(milliseconds:3000);constdoublekHoverTapSlop=20.0;// Logical pixelsconstdoublekEdgeSlop=12.0;// Logical pixelsconstdoublekTouchSlop=8.0;// Logical pixelsconstdoublekDoubleTapTouchSlop=kTouchSlop;// Logical pixelsconstdoublekPagingTouchSlop=kTouchSlop*2.0;// Logical pixels