Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 2646163002: Remove PlatformTouchEvent/Point and use WebTouchEvent/Point instead (Closed)
Patch Set: Fix nit Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandler.h ('k') | third_party/WebKit/Source/core/input/PointerEventManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698