| Index: ash/sticky_keys/sticky_keys_unittest.cc
|
| diff --git a/ash/sticky_keys/sticky_keys_unittest.cc b/ash/sticky_keys/sticky_keys_unittest.cc
|
| index 4c505e172000da9168821f1235daace6de67c1dc..36c04d5094ff3f81dc9ebcf429c6102cdb48501c 100644
|
| --- a/ash/sticky_keys/sticky_keys_unittest.cc
|
| +++ b/ash/sticky_keys/sticky_keys_unittest.cc
|
| @@ -883,8 +883,8 @@ TEST_P(StickyKeysMouseDispatchTest, MouseEventDispatchImpl) {
|
|
|
| // Test mouse press event is correctly modified and has correct DIP location.
|
| gfx::Point physical_location(400, 400);
|
| - gfx::Point dip_location(physical_location.x() / scale_factor,
|
| - physical_location.y() / scale_factor);
|
| + gfx::PointF dip_location(physical_location.x() / scale_factor,
|
| + physical_location.y() / scale_factor);
|
| ev.reset(GenerateMouseEventAt(true, physical_location));
|
| ui::EventDispatchDetails details = dispatcher->OnEventFromSource(ev.get());
|
| buffer.PopEvents(&events);
|
|
|