| Index: content/browser/web_contents/web_contents_view_aura.h
|
| diff --git a/content/browser/web_contents/web_contents_view_aura.h b/content/browser/web_contents/web_contents_view_aura.h
|
| index 39b66cdc78598b25e61360a1193a6c35af6b6468..c185ccfa7142b7045795177a60d51292b8c7dacd 100644
|
| --- a/content/browser/web_contents/web_contents_view_aura.h
|
| +++ b/content/browser/web_contents/web_contents_view_aura.h
|
| @@ -94,16 +94,11 @@ class CONTENT_EXPORT WebContentsViewAura
|
| 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;
|
| @@ -114,6 +109,12 @@ class CONTENT_EXPORT WebContentsViewAura
|
| 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::DragDropDelegate:
|
| virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE;
|
| virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE;
|
|
|