| Index: ui/events/gestures/motion_event_impl.h
|
| diff --git a/ui/events/gestures/motion_event_aura.h b/ui/events/gestures/motion_event_impl.h
|
| similarity index 95%
|
| rename from ui/events/gestures/motion_event_aura.h
|
| rename to ui/events/gestures/motion_event_impl.h
|
| index 7ba2726fbe237379902485daa64c625714ac4c14..cac09e8e4d92b78dcf5cc5acb5cd1ad0dfbd3fe8 100644
|
| --- a/ui/events/gestures/motion_event_aura.h
|
| +++ b/ui/events/gestures/motion_event_impl.h
|
| @@ -16,10 +16,10 @@
|
| namespace ui {
|
|
|
| // Implementation of MotionEvent which takes a stream of ui::TouchEvents.
|
| -class EVENTS_EXPORT MotionEventAura : public MotionEvent {
|
| +class EVENTS_EXPORT MotionEventImpl : public MotionEvent {
|
| public:
|
| - MotionEventAura();
|
| - virtual ~MotionEventAura();
|
| + MotionEventImpl();
|
| + virtual ~MotionEventImpl();
|
|
|
| void OnTouch(const TouchEvent& touch);
|
|
|
| @@ -69,7 +69,7 @@ class EVENTS_EXPORT MotionEventAura : public MotionEvent {
|
| float orientation;
|
| };
|
|
|
| - MotionEventAura(
|
| + MotionEventImpl(
|
| size_t pointer_count,
|
| const base::TimeTicks& last_touch_time,
|
| Action cached_action,
|
| @@ -94,7 +94,7 @@ class EVENTS_EXPORT MotionEventAura : public MotionEvent {
|
| // We want constant time indexing by pointer_index, and fast indexing by id.
|
| PointData active_touches_[MotionEvent::MAX_TOUCH_POINT_COUNT];
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(MotionEventAura);
|
| + DISALLOW_COPY_AND_ASSIGN(MotionEventImpl);
|
| };
|
|
|
| } // namespace ui
|
|
|