| Index: content/browser/renderer_host/render_widget_host_view_aura.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.h b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| index 961619ce467e7c062db6cd252a060c240bbd2888..d0feebcf8f1bcb0f37a5143c3e4a968c6c9bea5e 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.h
|
| @@ -162,16 +162,11 @@ class RenderWidgetHostViewAura
|
| 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;
|
| @@ -182,6 +177,12 @@ class RenderWidgetHostViewAura
|
| 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;
|
| +
|
| // Overridden from aura::client::ActivationDelegate:
|
| virtual bool ShouldActivate(const ui::Event* event) OVERRIDE;
|
| virtual void OnActivated() OVERRIDE;
|
|
|