chromium/ui/events/velocity_tracker/motion_event_generic.h

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

#ifndef UI_EVENTS_VELOCITY_TRACKER_MOTION_EVENT_GENERIC_H_
#define UI_EVENTS_VELOCITY_TRACKER_MOTION_EVENT_GENERIC_H_

#include <stddef.h>
#include <stdint.h>

#include <memory>
#include <vector>

#include "base/component_export.h"
#include "base/time/time.h"
#include "third_party/abseil-cpp/absl/container/inlined_vector.h"
#include "ui/events/velocity_tracker/motion_event.h"

namespace ui {

struct COMPONENT_EXPORT(VELOCITY_TRACKER) PointerProperties {};

// A generic MotionEvent implementation.
class COMPONENT_EXPORT(VELOCITY_TRACKER) MotionEventGeneric
    : public MotionEvent {};

}  // namespace ui

#endif  // UI_EVENTS_VELOCITY_TRACKER_MOTION_EVENT_GENERIC_H_