Index: ui/aura/window_tree_host_x11.cc |
diff --git a/ui/aura/window_tree_host_x11.cc b/ui/aura/window_tree_host_x11.cc |
index a57f2a9a343a32db6d303ce3002b55fa0762cdbc..d9572bd0aee1f4590d568edc080bab410be863e8 100644 |
--- a/ui/aura/window_tree_host_x11.cc |
+++ b/ui/aura/window_tree_host_x11.cc |
@@ -208,8 +208,7 @@ class TouchEventCalibrate : public base::MessagePumpObserver { |
private: |
// Overridden from base::MessagePumpObserver: |
- virtual base::EventStatus WillProcessEvent( |
- const base::NativeEvent& event) OVERRIDE { |
+ virtual void WillProcessEvent(const base::NativeEvent& event) OVERRIDE { |
#if defined(USE_XI2_MT) |
if (event->type == GenericEvent && |
(event->xgeneric.evtype == XI_TouchBegin || |
@@ -221,7 +220,6 @@ class TouchEventCalibrate : public base::MessagePumpObserver { |
xievent->event_y = xievent->root_y; |
} |
#endif // defined(USE_XI2_MT) |
- return base::EVENT_CONTINUE; |
} |
virtual void DidProcessEvent(const base::NativeEvent& event) OVERRIDE { |