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

Unified Diff: ui/events/event_constants.h

Issue 1120813002: Remove EF_FUNCTION_KEY and EF_NUMPAD_KEY. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments (wez@) Created 5 years, 7 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 | « ui/events/blink/blink_event_util.cc ('k') | ui/events/keycodes/dom4/keycode_converter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/event_constants.h
diff --git a/ui/events/event_constants.h b/ui/events/event_constants.h
index cf55e3ecd14f0d7a91b6c7a40482116011524941..05d98b4326aa4a1a9efea51e4273e81a860ae7ca 100644
--- a/ui/events/event_constants.h
+++ b/ui/events/event_constants.h
@@ -100,13 +100,11 @@ enum EventFlags {
// Flags specific to key events
enum KeyEventFlags {
- EF_NUMPAD_KEY = 1 << 16, // Key originates from number pad (Xkb only)
- EF_IME_FABRICATED_KEY = 1 << 17, // Key event fabricated by the underlying
+ EF_IME_FABRICATED_KEY = 1 << 16, // Key event fabricated by the underlying
// IME without a user action.
// (Linux X11 only)
- EF_IS_REPEAT = 1 << 18,
- EF_FUNCTION_KEY = 1 << 19, // Key originates from function key row
- EF_FINAL = 1 << 20, // Do not remap; the event was created with
+ EF_IS_REPEAT = 1 << 17,
+ EF_FINAL = 1 << 18, // Do not remap; the event was created with
// the desired final values.
};
« no previous file with comments | « ui/events/blink/blink_event_util.cc ('k') | ui/events/keycodes/dom4/keycode_converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698