| Index: ui/views/widget/desktop_aura/desktop_native_widget_aura.h
|
| diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.h b/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
|
| index c26ff96015ef923e8f93d3fda1f5c94ef63a4050..a6cc308266309ae1f7db898bc3f591777f046c8f 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
|
| +++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
|
| @@ -150,6 +150,7 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
|
| virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE;
|
| virtual bool IsAlwaysOnTop() const OVERRIDE;
|
| virtual void SetVisibleOnAllWorkspaces(bool always_visible) OVERRIDE;
|
| + virtual void SetInterceptAllKeys(bool want_all_keys) OVERRIDE;
|
| virtual void Maximize() OVERRIDE;
|
| virtual void Minimize() OVERRIDE;
|
| virtual bool IsMaximized() const OVERRIDE;
|
| @@ -295,6 +296,9 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
|
| bool restore_focus_on_activate_;
|
| bool restore_focus_on_window_focus_;
|
|
|
| + // Should all keys be intercepted while the window is in focus.
|
| + bool intercept_all_keys_on_focus_;
|
| +
|
| gfx::NativeCursor cursor_;
|
| // We must manually reference count the number of users of |cursor_manager_|
|
| // because the cursors created by |cursor_manager_| are shared among the
|
|
|