| Index: components/exo/touch_delegate.h
|
| diff --git a/components/exo/touch_delegate.h b/components/exo/touch_delegate.h
|
| index 28f162fe4a83c7f4a406532d5c7ceaaf5c628131..3f1bae1e91d28a5c49c1e52427b9cd0a16b08a88 100644
|
| --- a/components/exo/touch_delegate.h
|
| +++ b/components/exo/touch_delegate.h
|
| @@ -8,7 +8,7 @@
|
| #include "base/time/time.h"
|
|
|
| namespace gfx {
|
| -class Point;
|
| +class PointF;
|
| }
|
|
|
| namespace exo {
|
| @@ -33,7 +33,7 @@ class TouchDelegate {
|
| virtual void OnTouchDown(Surface* surface,
|
| base::TimeTicks time_stamp,
|
| int id,
|
| - const gfx::Point& location) = 0;
|
| + const gfx::PointF& location) = 0;
|
|
|
| // Called when a touch point has disappeared. No further events will be sent
|
| // for this touch point.
|
| @@ -42,7 +42,7 @@ class TouchDelegate {
|
| // Called when a touch point has changed coordinates.
|
| virtual void OnTouchMotion(base::TimeTicks time_stamp,
|
| int id,
|
| - const gfx::Point& location) = 0;
|
| + const gfx::PointF& location) = 0;
|
|
|
| // Called when a touch point has changed its shape.
|
| virtual void OnTouchShape(int id, float major, float minor) = 0;
|
|
|