| Index: ui/aura/window_tree_host_x11.cc
|
| diff --git a/ui/aura/window_tree_host_x11.cc b/ui/aura/window_tree_host_x11.cc
|
| index 7f2c720076a0e2e02a8538b2603fdb10dfb91e8e..158cca3c45b09e09f878f9a4947e1d21befb4b33 100644
|
| --- a/ui/aura/window_tree_host_x11.cc
|
| +++ b/ui/aura/window_tree_host_x11.cc
|
| @@ -169,9 +169,9 @@ class TouchEventCalibrate : public ui::PlatformEventObserver {
|
| if (event->root_location() == event->location()) {
|
| // Usually those will be equal,
|
| // if not, I am not sure what the correct value should be.
|
| - event->set_root_location(gfx::Point(x, y));
|
| + event->set_root_location(gfx::PointF(x, y));
|
| }
|
| - event->set_location(gfx::Point(x, y));
|
| + event->set_location(gfx::PointF(x, y));
|
| }
|
|
|
| private:
|
|
|