| Index: ui/views/widget/desktop_native_widget_aura.h
|
| diff --git a/ui/views/widget/desktop_native_widget_aura.h b/ui/views/widget/desktop_native_widget_aura.h
|
| index de14f9eb2ba28e8b0bac6f9b05b5ec4ffc0edcfe..9b792964c60da94a47b9af20d6038f95e73a698e 100644
|
| --- a/ui/views/widget/desktop_native_widget_aura.h
|
| +++ b/ui/views/widget/desktop_native_widget_aura.h
|
| @@ -113,15 +113,11 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
|
| const gfx::Rect& new_bounds) OVERRIDE;
|
| virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE;
|
| virtual void OnBlur() OVERRIDE;
|
| - virtual bool OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
|
| virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE;
|
| virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE;
|
| virtual bool ShouldDescendIntoChildForEventHandling(
|
| aura::Window* child,
|
| const gfx::Point& location) OVERRIDE;
|
| - virtual bool OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
|
| - virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
|
| - virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
|
| virtual bool CanFocus() OVERRIDE;
|
| virtual void OnCaptureLost() OVERRIDE;
|
| virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
| @@ -132,6 +128,12 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
|
| virtual bool HasHitTestMask() const OVERRIDE;
|
| virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE;
|
|
|
| + // Overridden from ui::EventHandler:
|
| + virtual ui::EventResult OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
|
| + virtual ui::EventResult OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
|
| + virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
|
| + virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
|
| +
|
| scoped_ptr<DesktopRootWindowHost> desktop_root_window_host_;
|
| aura::Window* window_;
|
| Widget::InitParams::Ownership ownership_;
|
|
|