| Index: third_party/WebKit/Source/core/input/EventHandler.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| index 31405d7b6c4e80e8f9ae74caa40cd00e674843aa..35cea31c489be6b23b08458ca07ff67809868d14 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| @@ -87,7 +87,6 @@
|
| #include "core/style/ComputedStyle.h"
|
| #include "core/style/CursorData.h"
|
| #include "core/svg/SVGDocumentExtensions.h"
|
| -#include "platform/PlatformTouchEvent.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/WindowsKeyboardCodes.h"
|
| #include "platform/geometry/FloatPoint.h"
|
| @@ -2082,8 +2081,8 @@ void EventHandler::updateLastScrollbarUnderMouse(Scrollbar* scrollbar,
|
| }
|
|
|
| WebInputEventResult EventHandler::handleTouchEvent(
|
| - const PlatformTouchEvent& event,
|
| - const Vector<PlatformTouchEvent>& coalescedEvents) {
|
| + const WebTouchEvent& event,
|
| + const Vector<WebTouchEvent>& coalescedEvents) {
|
| TRACE_EVENT0("blink", "EventHandler::handleTouchEvent");
|
| return m_pointerEventManager->handleTouchEvents(event, coalescedEvents);
|
| }
|
|
|