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

Unified Diff: Source/platform/PlatformEvent.h

Issue 1352283002: Remove PlatformKeyboardEvents requirement to have located virtual keycode information. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/core/events/KeyboardEvent.cpp ('k') | Source/web/WebInputEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PlatformEvent.h
diff --git a/Source/platform/PlatformEvent.h b/Source/platform/PlatformEvent.h
index 9f8e53fc4b6915fa0a86ffea2cef8707779f55d1..f4b1949133c7a7dab98e90a986f3761cfbe3201b 100644
--- a/Source/platform/PlatformEvent.h
+++ b/Source/platform/PlatformEvent.h
@@ -84,6 +84,9 @@ public:
LeftButtonDown = 1 << 6,
MiddleButtonDown = 1 << 7,
RightButtonDown = 1 << 8,
+
+ IsLeft = 1 << 11,
+ IsRight = 1 << 12,
};
enum RailsMode {
« no previous file with comments | « Source/core/events/KeyboardEvent.cpp ('k') | Source/web/WebInputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698