chromium/components/input/mock_input_router.h

// Copyright 2019 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_MOCK_INPUT_ROUTER_H_
#define COMPONENTS_INPUT_MOCK_INPUT_ROUTER_H_

#include <optional>

#include "base/memory/raw_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "cc/input/touch_action.h"
#include "components/input/event_with_latency_info.h"
#include "components/input/input_router.h"
#include "third_party/blink/public/mojom/input/touch_event.mojom.h"

namespace input {
class InputRouterClient;

class MockInputRouter : public InputRouter {};

}  // namespace input

#endif  // COMPONENTS_INPUT_MOCK_INPUT_ROUTER_H_