This source file includes following definitions.
- GestureFlingCancel
- GestureFlingCancelAck
- ShouldDeferGestureTapDown
- ShouldDeferGestureShowPress
- ShouldSuppressGestureTapEnd
- MaxCancelToDownTimeInMs
- MaxTapGapTimeInMs
- DropStashedTapDown
- ForwardStashedTapDown
#include "content/browser/renderer_host/input/touchscreen_tap_suppression_controller.h"
#include "content/browser/renderer_host/input/tap_suppression_controller.h"
namespace content {
TouchscreenTapSuppressionController::TouchscreenTapSuppressionController(
GestureEventQueue* )
: gesture_event_queue_(NULL) {}
TouchscreenTapSuppressionController::~TouchscreenTapSuppressionController() {}
void TouchscreenTapSuppressionController::GestureFlingCancel() {}
void TouchscreenTapSuppressionController::GestureFlingCancelAck(
bool ) {
}
bool TouchscreenTapSuppressionController::ShouldDeferGestureTapDown(
const GestureEventWithLatencyInfo& ) {
return false;
}
bool TouchscreenTapSuppressionController::ShouldDeferGestureShowPress(
const GestureEventWithLatencyInfo& ) {
return false;
}
bool TouchscreenTapSuppressionController::ShouldSuppressGestureTapEnd() {
return false;
}
int TouchscreenTapSuppressionController::MaxCancelToDownTimeInMs() {
return 0;
}
int TouchscreenTapSuppressionController::MaxTapGapTimeInMs() {
return 0;
}
void TouchscreenTapSuppressionController::DropStashedTapDown() {}
void TouchscreenTapSuppressionController::ForwardStashedTapDown() {}
}