| Index: ash/shelf/shelf_view_unittest.cc
|
| diff --git a/ash/shelf/shelf_view_unittest.cc b/ash/shelf/shelf_view_unittest.cc
|
| index ec1468ab10dfd89f9a8de9d64f994afac178f51c..ffd20a4822834c16da877361ed89eb5fb27a5308 100644
|
| --- a/ash/shelf/shelf_view_unittest.cc
|
| +++ b/ash/shelf/shelf_view_unittest.cc
|
| @@ -402,7 +402,7 @@ class ShelfViewTest : public AshTestBase {
|
| views::View* button = test_api_->GetButton(button_index);
|
| ui::MouseEvent click_event(ui::ET_MOUSE_PRESSED,
|
| button->bounds().origin(),
|
| - button->GetBoundsInScreen().origin(), 0);
|
| + button->GetBoundsInScreen().origin(), 0, 0);
|
| button_host->PointerPressedOnButton(button, pointer, click_event);
|
| return button;
|
| }
|
| @@ -427,7 +427,7 @@ class ShelfViewTest : public AshTestBase {
|
| views::View* destination = test_api_->GetButton(destination_index);
|
| ui::MouseEvent drag_event(ui::ET_MOUSE_DRAGGED,
|
| destination->bounds().origin(),
|
| - destination->GetBoundsInScreen().origin(), 0);
|
| + destination->GetBoundsInScreen().origin(), 0, 0);
|
| button_host->PointerDraggedOnButton(button, pointer, drag_event);
|
| return button;
|
| }
|
|
|