| Index: content/renderer/input/input_handler_proxy_unittest.cc
|
| diff --git a/content/renderer/input/input_handler_proxy_unittest.cc b/content/renderer/input/input_handler_proxy_unittest.cc
|
| index e17dcee596eda3e2e35432e4e6cb2ec36e2af69f..4d8bc430310c712755111984477ac050d1a8f14a 100644
|
| --- a/content/renderer/input/input_handler_proxy_unittest.cc
|
| +++ b/content/renderer/input/input_handler_proxy_unittest.cc
|
| @@ -141,10 +141,8 @@ WebTouchPoint CreateWebTouchPoint(WebTouchPoint::State state, float x,
|
| float y) {
|
| WebTouchPoint point;
|
| point.state = state;
|
| - point.screenPosition.x = x;
|
| - point.screenPosition.y = y;
|
| - point.position.x = x;
|
| - point.position.y = y;
|
| + point.screenPosition = WebFloatPoint(x, y);
|
| + point.position = WebFloatPoint(x, y);
|
| return point;
|
| }
|
|
|
|
|