Index: Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp |
diff --git a/Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp b/Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp |
index 8f1cf68e5c4ce64f536428e4ed46dc6c5a7225d7..664eed6e6d4da2351da53b11c82b92741733bcae 100644 |
--- a/Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp |
+++ b/Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp |
@@ -207,12 +207,10 @@ WebCompositorInputHandlerImpl::EventDisposition WebCompositorInputHandlerImpl::h |
return DidHandle; |
else if (!m_flingActiveOnMainThread) |
return DropEvent; |
-#if ENABLE(TOUCH_EVENT_TRACKING) |
} else if (event.type == WebInputEvent::TouchStart) { |
const WebTouchEvent& touchEvent = *static_cast<const WebTouchEvent*>(&event); |
if (!m_inputHandlerClient->haveTouchEventHandlersAt(touchEvent.touches[0].position)) |
return DropEvent; |
-#endif |
} else if (WebInputEvent::isKeyboardEventType(event.type)) { |
cancelCurrentFling(); |
} |