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

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

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (Closed)
Patch Set: Created 3 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
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 99e27f0810b4b9658680d37301fec4a7d3d6d8b9..a2080b4ed8298c7198942ecadb75aaf4acbf0e9c 100644
--- a/third_party/WebKit/public/platform/WebInputEvent.h
+++ b/third_party/WebKit/public/platform/WebInputEvent.h
@@ -187,6 +187,11 @@ class WebInputEvent {
ScrollLockOn = 1 << 18,
+ // Whether this is a compatibility event generated due to a
+ // native touch event. Mouse events generated from touch
+ // events will this.
bokan 2017/01/27 16:57:17 nit: "will set this"
dtapuska 2017/01/27 21:00:00 Done.
+ IsCompatibilityEventForTouch = 1 << 19,
+
// The set of non-stateful modifiers that specifically change the
// interpretation of the key being pressed. For example; IsLeft,
// IsRight, IsComposing don't change the meaning of the key

Powered by Google App Engine
This is Rietveld 408576698