Index: ui/views/controls/table/table_view_unittest.cc |
diff --git a/ui/views/controls/table/table_view_unittest.cc b/ui/views/controls/table/table_view_unittest.cc |
index 6ce06c89b68fd4ce7ec3ef7d36078c53ae4985b6..e592f2e2c6804a81bd3b6347173aa18b2ca773ba 100644 |
--- a/ui/views/controls/table/table_view_unittest.cc |
+++ b/ui/views/controls/table/table_view_unittest.cc |
@@ -198,7 +198,8 @@ |
void TapOnRow(int row) { |
const int y = row * table_->row_height(); |
- const ui::GestureEventDetails event_details(ui::ET_GESTURE_TAP); |
+ const ui::GestureEventDetails event_details(ui::ET_GESTURE_TAP, |
+ .0f, .0f); |
ui::GestureEvent tap(0, y, 0, base::TimeDelta(), event_details); |
table_->OnGestureEvent(&tap); |
} |
@@ -311,14 +312,14 @@ |
0, |
0, |
base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_BEGIN)); |
+ ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_BEGIN, .0f, .0f)); |
helper_->header()->OnGestureEvent(&scroll_begin); |
ui::GestureEvent scroll_update( |
x - 1, |
0, |
0, |
base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_UPDATE)); |
+ ui::GestureEventDetails(ui::ET_GESTURE_SCROLL_UPDATE, .0f, .0f)); |
helper_->header()->OnGestureEvent(&scroll_update); |
// This should shrink the first column and pull the second column in. |