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

Unified Diff: third_party/WebKit/Source/platform/PlatformMouseEvent.h

Issue 1458643002: Complete Stylus force & tilt info plumbing into JS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/platform/PlatformMouseEvent.h
diff --git a/third_party/WebKit/Source/platform/PlatformMouseEvent.h b/third_party/WebKit/Source/platform/PlatformMouseEvent.h
index b6734faedfb7a92e451dfb30cc9dceab822cd884..dc7a5416cab8541b423fbc1c82d9d0b6140c525e 100644
--- a/third_party/WebKit/Source/platform/PlatformMouseEvent.h
+++ b/third_party/WebKit/Source/platform/PlatformMouseEvent.h
@@ -28,6 +28,7 @@
#include "platform/PlatformEvent.h"
#include "platform/geometry/IntPoint.h"
+#include "public/platform/WebPointerProperties.h"
namespace blink {
@@ -75,6 +76,7 @@ public:
{
}
+ const WebPointerProperties& pointerProperties() const { return m_pointerProperties; }
const IntPoint& position() const { return m_position; }
const IntPoint& globalPosition() const { return m_globalPosition; }
const IntPoint& movementDelta() const { return m_movementDelta; }
@@ -85,6 +87,8 @@ public:
SyntheticEventType syntheticEventType() const { return m_synthesized; }
protected:
+ WebPointerProperties m_pointerProperties;
+
IntPoint m_position;
IntPoint m_globalPosition;
IntPoint m_movementDelta;
« no previous file with comments | « third_party/WebKit/Source/core/events/PointerEvent.cpp ('k') | third_party/WebKit/Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698