| Index: ui/views/controls/menu/menu_message_loop_aura.cc
|
| diff --git a/ui/views/controls/menu/menu_message_loop_aura.cc b/ui/views/controls/menu/menu_message_loop_aura.cc
|
| index 8ad00e8458de7e1fba6a37b3212df125f8008f77..f1171c87fabebee8a486e2ad572e5164bf46dae8 100644
|
| --- a/ui/views/controls/menu/menu_message_loop_aura.cc
|
| +++ b/ui/views/controls/menu/menu_message_loop_aura.cc
|
| @@ -116,8 +116,8 @@ void MenuMessageLoopAura::RepostEventToWindow(const ui::LocatedEvent& event,
|
| spc->ConvertPointFromScreen(root, &root_loc);
|
|
|
| ui::MouseEvent clone(static_cast<const ui::MouseEvent&>(event));
|
| - clone.set_location(root_loc);
|
| - clone.set_root_location(root_loc);
|
| + clone.set_location(gfx::PointF(root_loc));
|
| + clone.set_root_location(gfx::PointF(root_loc));
|
| root->GetHost()->dispatcher()->RepostEvent(clone);
|
| }
|
|
|
|
|