chromium/components/input/tap_suppression_controller.cc

// 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.

#include "components/input/tap_suppression_controller.h"

#include "base/notreached.h"
#include "base/trace_event/trace_event.h"

namespace input {

TapSuppressionController::Config::Config()
    :{}

TapSuppressionController::TapSuppressionController(const Config& config)
    :{}

TapSuppressionController::~TapSuppressionController() {}

void TapSuppressionController::GestureFlingCancelStoppedFling() {}

bool TapSuppressionController::ShouldSuppressTapDown() {}

bool TapSuppressionController::ShouldSuppressTapEnd() {}

base::TimeTicks TapSuppressionController::Now() {}

}  // namespace input