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

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

Issue 1838973003: Send lostpointercapture on touch capturing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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.
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandler.h ('k') | third_party/WebKit/Source/core/input/PointerEventManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698