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

Unified Diff: third_party/WebKit/Source/core/input/TouchEventManager.h

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/TouchEventManager.h
diff --git a/third_party/WebKit/Source/core/input/TouchEventManager.h b/third_party/WebKit/Source/core/input/TouchEventManager.h
index d791b497b80851c9f7df3395518bcfab2718f435..b33d8d384c71a6f7f3d4c336b0c3951fa69150cf 100644
--- a/third_party/WebKit/Source/core/input/TouchEventManager.h
+++ b/third_party/WebKit/Source/core/input/TouchEventManager.h
@@ -9,6 +9,7 @@
#include "core/events/PointerEventFactory.h"
#include "platform/wtf/Allocator.h"
#include "platform/wtf/HashMap.h"
+#include "platform/wtf/Vector.h"
#include "public/platform/WebInputEventResult.h"
#include "public/platform/WebTouchPoint.h"
@@ -56,6 +57,7 @@ class CORE_EXPORT TouchEventManager
// cannot be const as this function might change some of the properties in
// TouchInfo objects.
WebInputEventResult HandleTouchEvent(const WebTouchEvent&,
+ const Vector<WebTouchEvent>&,
HeapVector<TouchInfo>&);
// Resets the internal state of this object.
@@ -69,6 +71,7 @@ class CORE_EXPORT TouchEventManager
void SetAllPropertiesOfTouchInfos(HeapVector<TouchInfo>&);
WebInputEventResult DispatchTouchEvents(const WebTouchEvent&,
+ const Vector<WebTouchEvent>&,
const HeapVector<TouchInfo>&,
bool all_touches_released);

Powered by Google App Engine
This is Rietveld 408576698