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 0dcdbcda5433a7057f0f8a7e6dbdf46606c1d5dc..50639149af162205d7b19b2400baa23e895057d6 100644 |
--- a/third_party/WebKit/Source/core/events/PointerEvent.h |
+++ b/third_party/WebKit/Source/core/events/PointerEvent.h |
@@ -25,7 +25,7 @@ public: |
return adoptRefWillBeNoop(new PointerEvent(type, initializer)); |
} |
- long pointerId() const { return m_pointerId; } |
+ int pointerId() const { return m_pointerId; } |
Ian Vollick
2016/02/12 15:01:17
Did we change this so that it could be handled by
Navid Zolghadr
2016/02/12 16:30:47
No. The spec is indicating the range for this fiel
|
double width() const { return m_width; } |
double height() const { return m_height; } |
float pressure() const { return m_pressure; } |
@@ -46,7 +46,7 @@ private: |
PointerEvent(); |
PointerEvent(const AtomicString&, const PointerEventInit&); |
- long m_pointerId; |
+ int m_pointerId; |
double m_width; |
double m_height; |
float m_pressure; |