chromium/components/input/touch_emulator.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_INPUT_TOUCH_EMULATOR_H_
#define COMPONENTS_INPUT_TOUCH_EMULATOR_H_

#include "base/component_export.h"
#include "third_party/blink/public/common/input/web_gesture_event.h"
#include "third_party/blink/public/common/input/web_touch_event.h"
#include "third_party/blink/public/mojom/input/input_event_result.mojom-shared.h"
#include "ui/events/gesture_detection/gesture_provider.h"

namespace input {

class RenderWidgetHostViewInput;

// Emulates touch input. See TouchEmulator::Mode for more details.
class COMPONENT_EXPORT(INPUT) TouchEmulator : public ui::GestureProviderClient {};

}  // namespace input

#endif  // COMPONENTS_INPUT_TOUCH_EMULATOR_H_