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

Unified Diff: ui/events/event_constants.h

Issue 1185753008: Proposed alternative for supporting ChromeVox keyboard commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: ui/events/event_constants.h
diff --git a/ui/events/event_constants.h b/ui/events/event_constants.h
index 44589ab7a2d22c9215111f4b6de04ce46442f1a9..911964099fb6f6e5962a795ff27643e0a0fe8ae9 100644
--- a/ui/events/event_constants.h
+++ b/ui/events/event_constants.h
@@ -94,6 +94,8 @@ enum EventFlags {
EF_MOD3_DOWN = 1 << 11,
EF_BACK_MOUSE_BUTTON = 1 << 12,
EF_FORWARD_MOUSE_BUTTON = 1 << 13,
+ EF_ALL_MODIFIERS =
+ EF_SHIFT_DOWN | EF_CONTROL_DOWN | EF_ALT_DOWN | EF_COMMAND_DOWN,
sadrul 2015/06/24 18:31:02 Can you define there where you need it? (see for e
David Tseng 2015/06/24 19:09:54 Done.
};
// Flags specific to key events

Powered by Google App Engine
This is Rietveld 408576698