blob: 78a70a8b327c225d0687ddbb2781d859cd89cbd7 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_EVENTS_FUCHSIA_INPUT_EVENT_DISPATCHER_DELEGATE_H_
#define UI_EVENTS_FUCHSIA_INPUT_EVENT_DISPATCHER_DELEGATE_H_
#include "ui/events/events_export.h"
namespace ui {
class Event;
// Translates Fuchsia input events to Chrome ui::Events.
class EVENTS_EXPORT InputEventDispatcherDelegate {
public:
virtual void DispatchEvent(ui::Event* event) = 0;
};
} // namespace ui
#endif // UI_EVENTS_FUCHSIA_INPUT_EVENT_DISPATCHER_DELEGATE_H_