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

Unified Diff: third_party/WebKit/public/platform/WebInputEvent.h

Issue 2860663006: Remove WebTouchEvent from TouchEventManager APIs (Closed)
Patch Set: Fix more tests Created 3 years, 6 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: third_party/WebKit/public/platform/WebInputEvent.h
diff --git a/third_party/WebKit/public/platform/WebInputEvent.h b/third_party/WebKit/public/platform/WebInputEvent.h
index 362d189be0b596725767eeb0c8ac8df94f09a076..46304be1838cb7abfb1015e055075f61f16b4a2e 100644
--- a/third_party/WebKit/public/platform/WebInputEvent.h
+++ b/third_party/WebKit/public/platform/WebInputEvent.h
@@ -180,6 +180,13 @@ class WebInputEvent {
kTouchScrollStarted,
kTouchTypeLast = kTouchScrollStarted,
+ kPointerDown,
mustaq 2017/06/08 20:02:53 Add a "section header": // WebPointerEvent: work i
Navid Zolghadr 2017/06/08 21:18:41 Done.
+ kPointerActionFirst = kPointerDown,
+ kPointerUp,
+ kPointerMove,
+ kPointerCancel,
+ kPointerActionLast = kPointerCancel,
mustaq 2017/06/08 20:02:53 s/kPointerAction.../kPointerType.../? Existing bl
Navid Zolghadr 2017/06/08 21:18:41 Done.
+
kTypeLast = kTouchTypeLast
};

Powered by Google App Engine
This is Rietveld 408576698