Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
index 9f0381e4f979ad9e6a99158e7ea4dbf484b74e6d..81c7aeb9aca4941252974fb6e62300ebd4bc273c 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
@@ -423,9 +423,9 @@ void HTMLInputElement::updateTouchEventHandlerRegistry() |
EventHandlerRegistry& registry = document().frameHost()->eventHandlerRegistry(); |
// TODO(dtapuska): Make this passive touch listener see crbug.com/584438 |
if (hasTouchEventHandler) |
- registry.didAddEventHandler(*this, EventHandlerRegistry::TouchEventBlocking); |
+ registry.didAddEventHandler(*this, EventHandlerRegistry::TouchStartOrMoveEventBlocking); |
else |
- registry.didRemoveEventHandler(*this, EventHandlerRegistry::TouchEventBlocking); |
+ registry.didRemoveEventHandler(*this, EventHandlerRegistry::TouchStartOrMoveEventBlocking); |
m_hasTouchEventHandler = hasTouchEventHandler; |
} |
} |