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

Unified Diff: third_party/WebKit/Source/core/events/PointerEvent.h

Issue 1670073004: Send node transition events for touch events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applying the comments Created 4 years, 10 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/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;

Powered by Google App Engine
This is Rietveld 408576698