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

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

Issue 1426643008: Cleaning up PointerIdManager and add id re-mapping (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a link error in the shared_library case Created 5 years, 1 month 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 ca49448ee78f22542af24a43014cc12f39cae9ca..669a6c648d40c41a4f08d451197027bb7fe72bca 100644
--- a/third_party/WebKit/Source/core/events/PointerEvent.h
+++ b/third_party/WebKit/Source/core/events/PointerEvent.h
@@ -27,13 +27,14 @@ public:
static PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
const bool isPrimary, const PlatformMouseEvent&, PassRefPtrWillBeRawPtr<Node> relatedTarget,
- PassRefPtrWillBeRawPtr<AbstractView>);
+ PassRefPtrWillBeRawPtr<AbstractView>, const unsigned pointerId);
static PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
const bool isPrimary, const PlatformTouchPoint&,
PlatformEvent::Modifiers,
const double width, const double height,
- const double clientX, const double clientY);
+ const double clientX, const double clientY,
+ const unsigned pointerId);
long pointerId() const { return m_pointerId; }
double width() const { return m_width; }

Powered by Google App Engine
This is Rietveld 408576698