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

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

Issue 2844823002: Support Coalesced Touch in ppapi (Closed)
Patch Set: Created 3 years, 8 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/PointerEventManager.cpp
diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.cpp b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
index 51501f37e039a2bf257d43cb321a63cd0b8543d6..5afea17ea3b4f78c38712e9f2a45f1e453ecf887 100644
--- a/third_party/WebKit/Source/core/input/PointerEventManager.cpp
+++ b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
@@ -318,7 +318,8 @@ WebInputEventResult PointerEventManager::HandleTouchEvents(
DispatchTouchPointerEvents(event, coalesced_events, touch_infos);
- return touch_event_manager_->HandleTouchEvent(event, touch_infos);
+ return touch_event_manager_->HandleTouchEvent(event, coalesced_events,
Navid Zolghadr 2017/05/01 15:53:33 This is unlikely that we keep this coalesced_event
jkwang 2017/05/02 18:59:15 Is there a time line of removing coalesced touch e
+ touch_infos);
}
void PointerEventManager::ComputeTouchTargets(

Powered by Google App Engine
This is Rietveld 408576698