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 515f8d62e9c44c7db7eae6f9ff231e85f58181ba..ff891b832fc018354987898571dd0b814b228d83 100644 |
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp |
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp |
@@ -1662,6 +1662,11 @@ bool EventHandler::isPointerEventActive(int pointerId) |
return m_pointerEventManager.isActive(pointerId); |
} |
+WebPointerProperties::PointerType EventHandler::getPointerEventType(int pointerId) |
+{ |
+ return m_pointerEventManager.getPointerEventType(pointerId); |
+} |
+ |
void EventHandler::setPointerCapture(int pointerId, EventTarget* target) |
{ |
// TODO(crbug.com/591387): This functionality should be per page not per frame. |