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

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

Issue 2844823002: Support Coalesced Touch in ppapi (Closed)
Patch Set: Support Coalesced Touch in ppapi Created 3 years, 7 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 dc8654bb30bc2ff41d2463009ab0b96da154e02b..9b3ab7c67c42b7a214bc345839d9094e4d9f8d8b 100644
--- a/third_party/WebKit/Source/core/input/TouchEventManager.h
+++ b/third_party/WebKit/Source/core/input/TouchEventManager.h
@@ -10,6 +10,7 @@
#include "platform/graphics/TouchAction.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"
@@ -57,6 +58,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.
@@ -70,6 +72,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