| Index: ui/aura/shared/compound_event_filter.h
|
| diff --git a/ui/aura/shared/compound_event_filter.h b/ui/aura/shared/compound_event_filter.h
|
| index 5b35df1898709291f3a361b1b64bc46da24dc742..9c0318c03cff96d56663e9687a4a4a06be00101e 100644
|
| --- a/ui/aura/shared/compound_event_filter.h
|
| +++ b/ui/aura/shared/compound_event_filter.h
|
| @@ -55,7 +55,7 @@ class AURA_EXPORT CompoundEventFilter : public EventFilter {
|
| // Dispatches event to additional filters.
|
| ui::EventResult FilterKeyEvent(ui::KeyEvent* event);
|
| ui::EventResult FilterMouseEvent(ui::MouseEvent* event);
|
| - ui::TouchStatus FilterTouchEvent(Window* target, ui::TouchEvent* event);
|
| + ui::EventResult FilterTouchEvent(ui::TouchEvent* event);
|
|
|
| // Sets the visibility of the cursor if the event is not synthesized and
|
| // 1) it's hiding (show=false) when the cursor is currently shown, or
|
| @@ -67,15 +67,11 @@ class AURA_EXPORT CompoundEventFilter : public EventFilter {
|
| ui::Event* event,
|
| bool show);
|
|
|
| - // Overridden from EventFilter:
|
| - virtual ui::TouchStatus PreHandleTouchEvent(Window* target,
|
| - ui::TouchEvent* event) OVERRIDE;
|
| -
|
| // Overridden from ui::EventHandler:
|
| virtual ui::EventResult OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
|
| virtual ui::EventResult OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
|
| virtual ui::EventResult OnScrollEvent(ui::ScrollEvent* event) OVERRIDE;
|
| - virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
|
| + virtual ui::EventResult OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
|
| virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
|
| // Additional event filters that pre-handles events.
|
| ObserverList<EventFilter, true> filters_;
|
|
|