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)9PalmDetectionFilter::PalmDetectionFilter( 10 SharedPalmDetectionFilterState* shared_palm_state) 11 : shared_palm_state_(shared_palm_state) { 12 DCHECK(shared_palm_state != nullptr); 13 } 14 ~PalmDetectionFilter()15PalmDetectionFilter::~PalmDetectionFilter() {} 16 17 } // namespace ui