| Index: ash/shelf/shelf_view.cc
|
| diff --git a/ash/shelf/shelf_view.cc b/ash/shelf/shelf_view.cc
|
| index 3b7e204a8775683affa02522ee3426ffb2e8362d..101c0cd65298afc8b266fb26317857b399e58491 100644
|
| --- a/ash/shelf/shelf_view.cc
|
| +++ b/ash/shelf/shelf_view.cc
|
| @@ -616,7 +616,7 @@ bool ShelfView::StartDrag(const std::string& app_id,
|
| ash::wm::ConvertPointFromScreen(
|
| ash::wm::GetRootWindowAt(location_in_screen_coordinates),
|
| &point_in_root);
|
| - ui::MouseEvent event(ui::ET_MOUSE_PRESSED, pt, point_in_root, 0);
|
| + ui::MouseEvent event(ui::ET_MOUSE_PRESSED, pt, point_in_root, 0, 0);
|
| PointerPressedOnButton(drag_and_drop_view,
|
| ShelfButtonHost::DRAG_AND_DROP,
|
| event);
|
| @@ -639,7 +639,7 @@ bool ShelfView::Drag(const gfx::Point& location_in_screen_coordinates) {
|
| ash::wm::ConvertPointFromScreen(
|
| ash::wm::GetRootWindowAt(location_in_screen_coordinates),
|
| &point_in_root);
|
| - ui::MouseEvent event(ui::ET_MOUSE_DRAGGED, pt, point_in_root, 0);
|
| + ui::MouseEvent event(ui::ET_MOUSE_DRAGGED, pt, point_in_root, 0, 0);
|
| PointerDraggedOnButton(drag_and_drop_view,
|
| ShelfButtonHost::DRAG_AND_DROP,
|
| event);
|
|
|