| Index: views/widget/native_widget_aura.h
|
| diff --git a/views/widget/native_widget_aura.h b/views/widget/native_widget_aura.h
|
| index c93c61b21feae3a8fe6784d901cfe4b5226f64ad..a58c06ab72f33fc73716e4567352538cd53d9551 100644
|
| --- a/views/widget/native_widget_aura.h
|
| +++ b/views/widget/native_widget_aura.h
|
| @@ -131,6 +131,7 @@ class VIEWS_EXPORT NativeWidgetAura : public internal::NativeWidgetPrivate,
|
| virtual bool OnMouseEvent(aura::MouseEvent* event) OVERRIDE;
|
| virtual ui::TouchStatus OnTouchEvent(aura::TouchEvent* event) OVERRIDE;
|
| virtual bool ShouldActivate(aura::Event* event) OVERRIDE;
|
| + virtual bool ShouldAcceptEvents() OVERRIDE;
|
| virtual void OnActivated() OVERRIDE;
|
| virtual void OnLostActive() OVERRIDE;
|
| virtual void OnCaptureLost() OVERRIDE;
|
| @@ -156,6 +157,9 @@ class VIEWS_EXPORT NativeWidgetAura : public internal::NativeWidgetPrivate,
|
| // Can we be made active?
|
| bool can_activate_;
|
|
|
| + // If false, the window will pass all events through to any windows behind it.
|
| + bool accept_events_;
|
| +
|
| gfx::NativeCursor cursor_;
|
|
|
| scoped_ptr<TooltipManagerViews> tooltip_manager_;
|
|
|