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

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

Issue 2510133002: Add getCoalescedEvents API to PointerEvent (Closed)
Patch Set: rebase Created 4 years, 1 month 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/MouseEventManager.cpp
diff --git a/third_party/WebKit/Source/core/input/MouseEventManager.cpp b/third_party/WebKit/Source/core/input/MouseEventManager.cpp
index d86dec95b56daadaac9f7398786902e9c082d303..c38ab2fcb8db66b6adc03875a6e1446fdffb617a 100644
--- a/third_party/WebKit/Source/core/input/MouseEventManager.cpp
+++ b/third_party/WebKit/Source/core/input/MouseEventManager.cpp
@@ -306,7 +306,9 @@ void MouseEventManager::fakeMouseMoveEventTimerFired(TimerBase* timer) {
KeyboardEventManager::getCurrentModifierState()),
PlatformMouseEvent::RealOrIndistinguishable,
monotonicallyIncreasingTime(), WebPointerProperties::PointerType::Mouse);
- m_frame->eventHandler().handleMouseMoveEvent(fakeMouseMoveEvent);
+ Vector<PlatformMouseEvent> coalescedEvents;
+ m_frame->eventHandler().handleMouseMoveEvent(fakeMouseMoveEvent,
+ coalescedEvents);
}
void MouseEventManager::cancelFakeMouseMoveEvent() {
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandlerTest.cpp ('k') | third_party/WebKit/Source/core/input/PointerEventManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698