| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc
|
| index 798c68a7e49780daec9e7db0a1f1c3de22ca85a2..78cf82cdadfbaacfb301406f9354a2c93602afc7 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc
|
| @@ -109,9 +109,10 @@ ash::ShelfAction SelectItem(ash::mojom::ShelfItemDelegate* delegate,
|
| ui::EventType event_type) {
|
| std::unique_ptr<ui::Event> event;
|
| if (event_type == ui::ET_MOUSE_PRESSED) {
|
| - event =
|
| - base::MakeUnique<ui::MouseEvent>(event_type, gfx::Point(), gfx::Point(),
|
| - ui::EventTimeForNow(), ui::EF_NONE, 0);
|
| + event = base::MakeUnique<ui::MouseEvent>(
|
| + event_type, gfx::Point(), gfx::Point(), ui::EventTimeForNow(),
|
| + ui::EF_NONE, 0,
|
| + ui::PointerDetails(ui::EventPointerType::POINTER_TYPE_MOUSE));
|
| } else if (event_type == ui::ET_KEY_RELEASED) {
|
| event = base::MakeUnique<ui::KeyEvent>(event_type, ui::VKEY_UNKNOWN,
|
| ui::EF_NONE);
|
|
|