chromium/ui/events/gestures/motion_event_aura.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_GESTURES_MOTION_EVENT_AURA_H_
#define UI_EVENTS_GESTURES_MOTION_EVENT_AURA_H_

#include <stddef.h>

#include "ui/events/event.h"
#include "ui/events/events_export.h"
#include "ui/events/velocity_tracker/motion_event_generic.h"

namespace ui {

// Implementation of MotionEvent which takes a stream of ui::TouchEvents.
class EVENTS_EXPORT MotionEventAura : public MotionEventGeneric {};

}  // namespace ui

#endif  // UI_EVENTS_GESTURES_MOTION_EVENT_AURA_H_