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

Unified Diff: ui/events/gesture_detection/motion_event.h

Issue 181833003: [Android] Out with the Android GR, in with the new unified C++ GR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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
Index: ui/events/gesture_detection/motion_event.h
diff --git a/ui/events/gesture_detection/motion_event.h b/ui/events/gesture_detection/motion_event.h
index df3bd13fbbf8399ea4c95fa93cc0375bb5b9f9f2..637a9c6eca62aafd0c6e78441d44aa4f8304cad7 100644
--- a/ui/events/gesture_detection/motion_event.h
+++ b/ui/events/gesture_detection/motion_event.h
@@ -16,12 +16,12 @@ namespace ui {
class GESTURE_DETECTION_EXPORT MotionEvent {
public:
enum Action {
- ACTION_POINTER_DOWN,
- ACTION_POINTER_UP,
ACTION_DOWN,
jdduke (slow) 2014/02/26 20:57:02 This was intentional, but it's purely a cosmetic c
ACTION_UP,
+ ACTION_MOVE,
ACTION_CANCEL,
- ACTION_MOVE
+ ACTION_POINTER_DOWN,
+ ACTION_POINTER_UP,
};
// The implementer promises that |GetPointerId()| will never exceed this.

Powered by Google App Engine
This is Rietveld 408576698