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

// Copyright 2022 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/input_device_factory_evdev_metrics.h"

#include "base/metrics/histogram_functions.h"

namespace ui {

void InputDeviceFactoryEvdevMetrics::RecordAttachmentType(
    const std::string& histogram_name,
    AttachmentType type) {}

void InputDeviceFactoryEvdevMetrics::RecordAttachmentForm(
    const std::string& histogram_name,
    AttachmentForm type) {}

AttachmentType InputDeviceFactoryEvdevMetrics::ConvertInputTypeToAttachmentType(
    InputDeviceType type) {}

std::string InputDeviceFactoryEvdevMetrics::ConvertInputTypeToHistogramName(
    InputDeviceType type) {}

void InputDeviceFactoryEvdevMetrics::OnDeviceAttach(
    const EventConverterEvdev* converter) {}

InputDeviceFactoryEvdevMetrics::InputDeviceFactoryEvdevMetrics() = default;

InputDeviceFactoryEvdevMetrics::~InputDeviceFactoryEvdevMetrics() = default;

}  // namespace ui