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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 2675793005: Track constant InputDeviceCapabilities objects per-window. (Closed)
Patch Set: test tidying Created 3 years, 10 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: third_party/WebKit/Source/core/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index fa417ad6707e2a82a77b79ac1a7fdfc926c2fda0..4736b6f40f03d686d1f7509a07dd3201de6c3eb0 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -678,9 +678,11 @@ WebInputEventResult EventHandler::handleMousePressEvent(
HitTestResult hitTestResult = EventHandlingUtil::hitTestResultInFrame(
m_frame, documentPoint, HitTestRequest::ReadOnly);
InputDeviceCapabilities* sourceCapabilities =
- mouseEvent.fromTouch()
- ? InputDeviceCapabilities::firesTouchEventsSourceCapabilities()
- : InputDeviceCapabilities::doesntFireTouchEventsSourceCapabilities();
+ m_frame->document()
+ ->domWindow()
+ ->getInputDeviceCapabilities()
+ ->firesTouchEvents(mouseEvent.fromTouch());
+
if (eventResult == WebInputEventResult::NotHandled) {
eventResult = m_mouseEventManager->handleMouseFocus(hitTestResult,
sourceCapabilities);
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSelectElement.cpp ('k') | third_party/WebKit/Source/core/input/GestureManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698