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 8334f594b156ff7447b2df42defae75210a6e423..60ba3f89516e87dd4a373ae2d4e0fff5987e8b2b 100644 |
--- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp |
@@ -538,9 +538,9 @@ void WebPluginContainerImpl::requestTouchEventType(TouchEventRequestType request |
if (m_element->document().frameHost()) { |
EventHandlerRegistry& registry = m_element->document().frameHost()->eventHandlerRegistry(); |
if (requestType != TouchEventRequestTypeNone && m_touchEventRequestType == TouchEventRequestTypeNone) |
- registry.didAddEventHandler(*m_element, EventHandlerRegistry::TouchEvent); |
+ registry.didAddEventHandler(*m_element, EventHandlerRegistry::TouchEventBlocking); |
else if (requestType == TouchEventRequestTypeNone && m_touchEventRequestType != TouchEventRequestTypeNone) |
- registry.didRemoveEventHandler(*m_element, EventHandlerRegistry::TouchEvent); |
+ registry.didRemoveEventHandler(*m_element, EventHandlerRegistry::TouchEventBlocking); |
} |
m_touchEventRequestType = requestType; |
} |