Index: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
index eff557879550ae329fb203910552a73abdee45c0..391f54ece22ced44c47dff668490cb6cc45b792c 100644 |
--- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
@@ -534,9 +534,9 @@ void WebPluginContainerImpl::requestTouchEventType(TouchEventRequestType request |
if (FrameHost* frameHost = m_element->document().frameHost()) { |
EventHandlerRegistry& registry = frameHost->eventHandlerRegistry(); |
if (requestType != TouchEventRequestTypeNone && m_touchEventRequestType == TouchEventRequestTypeNone) |
- registry.didAddEventHandler(*m_element, EventHandlerRegistry::TouchEventBlocking); |
+ registry.didAddEventHandler(*m_element, EventHandlerRegistry::TouchStartOrMoveEventBlocking); |
else if (requestType == TouchEventRequestTypeNone && m_touchEventRequestType != TouchEventRequestTypeNone) |
- registry.didRemoveEventHandler(*m_element, EventHandlerRegistry::TouchEventBlocking); |
+ registry.didRemoveEventHandler(*m_element, EventHandlerRegistry::TouchStartOrMoveEventBlocking); |
} |
m_touchEventRequestType = requestType; |
} |