blob: 86821d6842ff2274fde30d78f0bbe1b09440e32b [file] [log] [blame]
// 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 "content/browser/renderer_host/input/touchpad_tap_suppression_controller.h"
namespace content {
TouchpadTapSuppressionController::TouchpadTapSuppressionController(
const TapSuppressionController::Config& config)
: TapSuppressionController(config) {}
TouchpadTapSuppressionController::~TouchpadTapSuppressionController() {}
bool TouchpadTapSuppressionController::ShouldSuppressMouseDown(
const MouseEventWithLatencyInfo& event) {
return ShouldSuppressTapDown();
}
bool TouchpadTapSuppressionController::ShouldSuppressMouseUp() {
return ShouldSuppressTapEnd();
}
} // namespace content