blob: cc979de4f43f69ea379d158ad21b4d81e6bd5398 [file] [log] [blame] [edit]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <optional>
#include <utility>
#include <vector>
#include "ui/base/pointer/pointer_device.h"
namespace ui {
std::pair<int, int> GetAvailablePointerAndHoverTypesImpl() {
return {POINTER_TYPE_FINE, HOVER_TYPE_HOVER};
}
TouchScreensAvailability GetTouchScreensAvailability() {
return TouchScreensAvailability::NONE;
}
int MaxTouchPoints() {
return 0;
}
} // namespace ui