| Index: third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.cpp b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| index 597100315230e4647231157628744570e5205f5c..41cc92338c9b9b95baed2d72f6217121b78ac0cc 100644
|
| --- a/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/TouchEventManager.cpp
|
| @@ -11,7 +11,7 @@
|
| #include "core/frame/FrameHost.h"
|
| #include "core/frame/FrameView.h"
|
| #include "core/html/HTMLCanvasElement.h"
|
| -#include "core/input/EventHandler.h"
|
| +#include "core/input/EventHandlingUtil.h"
|
| #include "core/input/TouchActionUtil.h"
|
| #include "core/page/ChromeClient.h"
|
| #include "core/page/Page.h"
|
| @@ -221,8 +221,8 @@ WebInputEventResult TouchEventManager::dispatchTouchEvents(
|
| }
|
| }
|
| }
|
| - eventResult = EventHandler::mergeEventResult(eventResult,
|
| - EventHandler::toWebInputEventResult(domDispatchResult));
|
| + eventResult = EventHandlingUtil::mergeEventResult(eventResult,
|
| + EventHandlingUtil::toWebInputEventResult(domDispatchResult));
|
| }
|
| }
|
|
|
| @@ -254,7 +254,7 @@ void TouchEventManager::updateTargetAndRegionMapsForTouchStarts(
|
| || &touchInfo.touchNode->document() != m_touchSequenceDocument)) {
|
| if (m_touchSequenceDocument->frame()) {
|
| LayoutPoint framePoint = roundedLayoutPoint(m_touchSequenceDocument->frame()->view()->rootFrameToContents(touchInfo.point.pos()));
|
| - result = EventHandler::hitTestResultInFrame(m_touchSequenceDocument->frame(), framePoint, hitType);
|
| + result = EventHandlingUtil::hitTestResultInFrame(m_touchSequenceDocument->frame(), framePoint, hitType);
|
| Node* node = result.innerNode();
|
| if (!node)
|
| continue;
|
|
|