Index: public/web/WebTouchPoint.h |
diff --git a/public/web/WebTouchPoint.h b/public/web/WebTouchPoint.h |
index 0093f0f6f565add3f53c97fdacd7d53a64f79458..fc0231a5cab40a187d777ce808c233115d16969b 100644 |
--- a/public/web/WebTouchPoint.h |
+++ b/public/web/WebTouchPoint.h |
@@ -32,7 +32,7 @@ |
#define WebTouchPoint_h |
#include "../platform/WebCommon.h" |
-#include "../platform/WebPoint.h" |
+#include "../platform/WebFloatPoint.h" |
abarth-chromium
2014/02/20 21:05:09
These should be:
#include "public/platform/WebCom
|
namespace blink { |
@@ -59,11 +59,11 @@ public: |
int id; |
State state; |
- WebPoint screenPosition; |
- WebPoint position; |
+ WebFloatPoint screenPosition; |
+ WebFloatPoint position; |
- int radiusX; |
- int radiusY; |
+ float radiusX; |
+ float radiusY; |
float rotationAngle; |
float force; |
}; |