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

Unified Diff: ui/events/event_constants.h

Issue 243143002: linux-aura: Supports Compose key with XIM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments. Created 6 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 a19a136f0d5726406cf5c5b480e04c31c1d71700..ce2fdb4e68d76dfdb93b609780e6d6dc0947eabe 100644
--- a/ui/events/event_constants.h
+++ b/ui/events/event_constants.h
@@ -95,6 +95,9 @@ 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)
};
// Flags specific to mouse events

Powered by Google App Engine
This is Rietveld 408576698