chromium/components/input/tap_suppression_controller.h

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_INPUT_TAP_SUPPRESSION_CONTROLLER_H_
#define COMPONENTS_INPUT_TAP_SUPPRESSION_CONTROLLER_H_

#include "base/time/time.h"
#include "base/timer/timer.h"
#include "base/component_export.h"

namespace input {

// The core controller for suppression of taps (touchpad or touchscreen)
// immediately following a GestureFlingCancel event (caused by the same tap).
// Only taps of sufficient speed and within a specified time window after a
// GestureFlingCancel are suppressed.
class COMPONENT_EXPORT(INPUT) TapSuppressionController {};

}  // namespace input

#endif  // COMPONENTS_INPUT_TAP_SUPPRESSION_CONTROLLER_H_