Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: ui/events/gestures/motion_event_impl.h

Issue 789363004: WindowManagerApp should recognize gestures (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rename Aura to Impl and add FIXME Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/gestures/motion_event_aura_unittest.cc ('k') | ui/events/gestures/motion_event_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ui/events/gestures/motion_event_aura_unittest.cc ('k') | ui/events/gestures/motion_event_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698