chromium/ui/events/ozone/evdev/heatmap_palm_detector.cc

// Copyright 2023 The Chromium Authors
// 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/heatmap_palm_detector.h"

namespace ui {

namespace {
std::unique_ptr<HeatmapPalmDetector> g_instance =;
}  // namespace

HeatmapPalmDetector::HeatmapPalmDetector() = default;

HeatmapPalmDetector::~HeatmapPalmDetector() = default;

HeatmapPalmDetector::TouchRecord::TouchRecord(
    base::Time timestamp,
    const std::vector<int>& tracking_ids) {}

HeatmapPalmDetector::TouchRecord::TouchRecord(
    const HeatmapPalmDetector::TouchRecord& t) = default;

HeatmapPalmDetector::TouchRecord::~TouchRecord() = default;

void HeatmapPalmDetector::SetInstance(
    std::unique_ptr<HeatmapPalmDetector> detector) {}

HeatmapPalmDetector* HeatmapPalmDetector::GetInstance() {}

}  // namespace ui