diff options
Diffstat (limited to 'chromium/ui/aura/client/aura_constants.h')
-rw-r--r-- | chromium/ui/aura/client/aura_constants.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/ui/aura/client/aura_constants.h b/chromium/ui/aura/client/aura_constants.h index 30c090399b9..138069130a8 100644 --- a/chromium/ui/aura/client/aura_constants.h +++ b/chromium/ui/aura/client/aura_constants.h @@ -137,6 +137,11 @@ AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey; AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const kShowStateKey; +// A property key to store key event dispatch policy. The default value is +// false, which means IME receives a key event in PREDISPATCH phace before a +// window receives it. If it's true, a window receives a key event before IME. +AURA_EXPORT extern const WindowProperty<bool>* const kSkipImeProcessing; + // A property key to store the title of the window; sometimes shown to users. AURA_EXPORT extern const WindowProperty<base::string16*>* const kTitleKey; |