Index: third_party/WebKit/Source/core/events/PointerEvent.h |
diff --git a/third_party/WebKit/Source/core/events/PointerEvent.h b/third_party/WebKit/Source/core/events/PointerEvent.h |
index a03c3fb8c61caf668933455f15cbc11b3494c60f..e6479485554f8142d250c04452152546c9a99f5c 100644 |
--- a/third_party/WebKit/Source/core/events/PointerEvent.h |
+++ b/third_party/WebKit/Source/core/events/PointerEvent.h |
@@ -11,7 +11,7 @@ |
namespace blink { |
-class PointerEvent final : public MouseEvent { |
+class CORE_EXPORT PointerEvent final : public MouseEvent { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
@@ -35,6 +35,8 @@ class PointerEvent final : public MouseEvent { |
EventDispatchMediator* createMediator() override; |
+ HeapVector<Member<PointerEvent>> getCoalescedEvents() const; |
+ |
DECLARE_VIRTUAL_TRACE(); |
private: |
@@ -48,6 +50,8 @@ class PointerEvent final : public MouseEvent { |
long m_tiltY; |
String m_pointerType; |
bool m_isPrimary; |
+ |
+ HeapVector<Member<PointerEvent>> m_coalescedEvents; |
}; |
class PointerEventDispatchMediator final : public EventDispatchMediator { |