Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: Source/WebKit/chromium/src/WebCompositorInputHandlerImpl.cpp

Issue 14296003: Remove TOUCH_EVENTS and TOUCH_EVENT_TRACKING compile-time flags. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « Source/WebKit/chromium/src/PageWidgetDelegate.cpp ('k') | Source/WebKit/chromium/src/WebInputEventConversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698