| 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 3aee4e566f3e309b68b8eb59449141db46fae47d..fa2018236bfd5588f8587e27478eb6db9b276533 100644
|
| --- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| @@ -529,9 +529,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;
|
| }
|
|
|