This source file includes following definitions.
- GestureFlingCancel
- GestureFlingCancelAck
- ShouldDeferMouseDown
- ShouldSuppressMouseUp
- MaxCancelToDownTimeInMs
- MaxTapGapTimeInMs
- DropStashedTapDown
- ForwardStashedTapDown
#include "content/browser/renderer_host/input/touchpad_tap_suppression_controller.h"
#include "content/browser/renderer_host/input/tap_suppression_controller.h"
#include "content/browser/renderer_host/input/tap_suppression_controller_client.h"
namespace content {
TouchpadTapSuppressionController::TouchpadTapSuppressionController(
TouchpadTapSuppressionControllerClient* )
: client_(NULL) {}
TouchpadTapSuppressionController::~TouchpadTapSuppressionController() {}
void TouchpadTapSuppressionController::GestureFlingCancel() {}
void TouchpadTapSuppressionController::GestureFlingCancelAck(
bool ) {
}
bool TouchpadTapSuppressionController::ShouldDeferMouseDown(
const MouseEventWithLatencyInfo& ) {
return false;
}
bool TouchpadTapSuppressionController::ShouldSuppressMouseUp() { return false; }
int TouchpadTapSuppressionController::MaxCancelToDownTimeInMs() {
return 0;
}
int TouchpadTapSuppressionController::MaxTapGapTimeInMs() {
return 0;
}
void TouchpadTapSuppressionController::DropStashedTapDown() {
}
void TouchpadTapSuppressionController::ForwardStashedTapDown() {
}
}