summaryrefslogtreecommitdiff
path: root/ui/events/ozone/evdev/touch_filter/palm_detection_filter.cc
blob: cd972c552a4b9054a71903d978ce5bc0277de410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/events/ozone/evdev/touch_filter/palm_detection_filter.h"
#include "base/logging.h"
namespace ui {

PalmDetectionFilter::PalmDetectionFilter(
    SharedPalmDetectionFilterState* shared_palm_state)
    : shared_palm_state_(shared_palm_state) {
  DCHECK(shared_palm_state != nullptr);
}

PalmDetectionFilter::~PalmDetectionFilter() {}

}  // namespace ui