Chromium Code Reviews| 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" |
|
jamesr
2014/02/03 21:48:23
to include files from public/platform/ from within
tdresser
2014/02/04 14:46:23
That works fine when building blink level targets,
|
| 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; |
| }; |