| Index: third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.cpp b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| index 9f87727f5ab889a192169b892c86d357f50ff0a6..61a5f01cdb83edccb0ac205f84e4d1482f67325a 100644
|
| --- a/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
|
| @@ -169,7 +169,6 @@ WebInputEventResult PointerEventManager::dispatchPointerEvent(
|
| DCHECK(!m_dispatchingPointerId);
|
| AutoReset<int> dispatchHolder(&m_dispatchingPointerId, pointerId);
|
| DispatchEventResult dispatchResult = target->dispatchEvent(pointerEvent);
|
| -
|
| return EventHandlingUtil::toWebInputEventResult(dispatchResult);
|
| }
|
| return WebInputEventResult::NotHandled;
|
| @@ -507,7 +506,7 @@ WebInputEventResult PointerEventManager::sendMousePointerEvent(
|
| mouseEventType == EventTypeNames::mouseup) {
|
| WebInputEventResult clickEventResult =
|
| m_mouseEventManager->dispatchMouseClickIfNeeded(
|
| - mouseTarget->toNode(), mouseEvent, canvasRegionId, target);
|
| + mouseTarget->toNode(), mouseEvent, canvasRegionId);
|
| result = EventHandlingUtil::mergeEventResult(clickEventResult, result);
|
| }
|
| }
|
|
|