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