xref: /aosp_15_r20/external/libpalmrejection/ui/events/ozone/evdev/touch_filter/palm_detection_filter.cc (revision 385f2b9352baca56113422de7d5392250974f582)
1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "ui/events/ozone/evdev/touch_filter/palm_detection_filter.h"
6 #include "base/logging.h"
7 namespace ui {
8 
PalmDetectionFilter(SharedPalmDetectionFilterState * shared_palm_state)9 PalmDetectionFilter::PalmDetectionFilter(
10     SharedPalmDetectionFilterState* shared_palm_state)
11     : shared_palm_state_(shared_palm_state) {
12   DCHECK(shared_palm_state != nullptr);
13 }
14 
~PalmDetectionFilter()15 PalmDetectionFilter::~PalmDetectionFilter() {}
16 
17 }  // namespace ui