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

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: Add and fix tests Created 5 years, 8 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 cf55e3ecd14f0d7a91b6c7a40482116011524941..550034f71187f825b8e5a7bf28db42e026d49cd4 100644
--- a/ui/events/event_constants.h
+++ b/ui/events/event_constants.h
@@ -100,12 +100,10 @@ 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
// 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
sadrul 2015/05/04 17:31:01 Renumber these to be 16:18?
kpschoedel 2015/05/04 17:49:19 Done.
// the desired final values.
};

Powered by Google App Engine
This is Rietveld 408576698