Chromium Code Reviews| Index: ui/aura/window_event_dispatcher.h |
| diff --git a/ui/aura/window_event_dispatcher.h b/ui/aura/window_event_dispatcher.h |
| index 1a877f887349e889275e79c8b67a094e923e4e60..1a144e9242682603a96f044c30890c8a047e10be 100644 |
| --- a/ui/aura/window_event_dispatcher.h |
| +++ b/ui/aura/window_event_dispatcher.h |
| @@ -75,7 +75,7 @@ class AURA_EXPORT WindowEventDispatcher : public ui::EventProcessor, |
| // Handles a gesture event. Returns true if handled. Unlike the other |
| // event-dispatching function (e.g. for touch/mouse/keyboard events), gesture |
| // events are dispatched from GestureRecognizer instead of WindowTreeHost. |
|
sadrul
2014/05/07 13:42:17
This comment is wrong. Remove.
tdresser
2014/05/07 14:04:17
Done.
|
| - void DispatchGestureEvent(ui::GestureEvent* event); |
| + virtual void DispatchGestureEvent(ui::GestureEvent* event) OVERRIDE; |
|
sadrul
2014/05/07 13:42:17
Move this down in line ~187
tdresser
2014/05/07 14:04:17
Done.
|
| // Dispatches a ui::ET_MOUSE_EXITED event at |point|. |
| // TODO(beng): needed only for WTH::OnCursorVisibilityChanged(). |
| @@ -184,7 +184,6 @@ class AURA_EXPORT WindowEventDispatcher : public ui::EventProcessor, |
| // Overridden from ui::GestureEventHelper. |
| virtual bool CanDispatchToConsumer(ui::GestureConsumer* consumer) OVERRIDE; |
| - virtual void DispatchPostponedGestureEvent(ui::GestureEvent* event) OVERRIDE; |
| virtual void DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE; |
| // Overridden from WindowObserver: |