Index: ui/aura/shared/compound_event_filter.cc |
diff --git a/ui/aura/shared/compound_event_filter.cc b/ui/aura/shared/compound_event_filter.cc |
index 60c48fa973773b3753afb9ba5ed041c2b14fa28a..08cdb51cd8e9f73e11011bfe2a1812a0b8e95cf6 100644 |
--- a/ui/aura/shared/compound_event_filter.cc |
+++ b/ui/aura/shared/compound_event_filter.cc |
@@ -124,7 +124,7 @@ bool CompoundEventFilter::PreHandleMouseEvent(Window* target, |
ui::TouchStatus CompoundEventFilter::PreHandleTouchEvent( |
Window* target, |
- ui::TouchEventImpl* event) { |
+ ui::TouchEvent* event) { |
ui::TouchStatus status = FilterTouchEvent(target, event); |
if (status == ui::TOUCH_STATUS_UNKNOWN && |
event->type() == ui::ET_TOUCH_PRESSED) { |
@@ -200,7 +200,7 @@ bool CompoundEventFilter::FilterMouseEvent(Window* target, |
ui::TouchStatus CompoundEventFilter::FilterTouchEvent( |
Window* target, |
- ui::TouchEventImpl* event) { |
+ ui::TouchEvent* event) { |
ui::TouchStatus status = ui::TOUCH_STATUS_UNKNOWN; |
if (filters_.might_have_observers()) { |
ObserverListBase<EventFilter>::Iterator it(filters_); |