| 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 e7d9f87fef474510b63479b66da42f4a8c5e27a6..bf5d52492238d161aa41a4c99d1956952d2b016e 100644
|
| --- a/ui/views/controls/table/table_view_unittest.cc
|
| +++ b/ui/views/controls/table/table_view_unittest.cc
|
| @@ -198,8 +198,8 @@ class TableViewTest : public testing::Test {
|
|
|
| void ClickOnRow(int row, int flags) {
|
| const int y = row * table_->row_height();
|
| - const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::Point(0, y),
|
| - gfx::Point(0, y), ui::EventTimeForNow(),
|
| + const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::PointF(0.f, y),
|
| + gfx::PointF(0.f, y), ui::EventTimeForNow(),
|
| ui::EF_LEFT_MOUSE_BUTTON | flags,
|
| ui::EF_LEFT_MOUSE_BUTTON);
|
| table_->OnMousePressed(pressed);
|
| @@ -296,13 +296,13 @@ TEST_F(TableViewTest, Resize) {
|
| const int x = table_->visible_columns()[0].width;
|
| EXPECT_NE(0, x);
|
| // Drag the mouse 1 pixel to the left.
|
| - const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::Point(x, 0),
|
| - gfx::Point(x, 0), ui::EventTimeForNow(),
|
| + const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::PointF(x, 0.f),
|
| + gfx::PointF(x, 0.f), ui::EventTimeForNow(),
|
| ui::EF_LEFT_MOUSE_BUTTON,
|
| ui::EF_LEFT_MOUSE_BUTTON);
|
| helper_->header()->OnMousePressed(pressed);
|
| - const ui::MouseEvent dragged(ui::ET_MOUSE_DRAGGED, gfx::Point(x - 1, 0),
|
| - gfx::Point(x - 1, 0), ui::EventTimeForNow(),
|
| + const ui::MouseEvent dragged(ui::ET_MOUSE_DRAGGED, gfx::PointF(x - 1.f, 0.f),
|
| + gfx::PointF(x - 1.f, 0.f), ui::EventTimeForNow(),
|
| ui::EF_LEFT_MOUSE_BUTTON, 0);
|
| helper_->header()->OnMouseDragged(dragged);
|
|
|
| @@ -394,14 +394,14 @@ TEST_F(TableViewTest, SortOnMouse) {
|
| const int x = table_->visible_columns()[0].width / 2;
|
| EXPECT_NE(0, x);
|
| // Press and release the mouse.
|
| - const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::Point(x, 0),
|
| - gfx::Point(x, 0), ui::EventTimeForNow(),
|
| + const ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, gfx::PointF(x, 0.f),
|
| + gfx::PointF(x, 0.f), ui::EventTimeForNow(),
|
| ui::EF_LEFT_MOUSE_BUTTON,
|
| ui::EF_LEFT_MOUSE_BUTTON);
|
| // The header must return true, else it won't normally get the release.
|
| EXPECT_TRUE(helper_->header()->OnMousePressed(pressed));
|
| - const ui::MouseEvent release(ui::ET_MOUSE_RELEASED, gfx::Point(x, 0),
|
| - gfx::Point(x, 0), ui::EventTimeForNow(),
|
| + const ui::MouseEvent release(ui::ET_MOUSE_RELEASED, gfx::PointF(x, 0.f),
|
| + gfx::PointF(x, 0.f), ui::EventTimeForNow(),
|
| ui::EF_LEFT_MOUSE_BUTTON,
|
| ui::EF_LEFT_MOUSE_BUTTON);
|
| helper_->header()->OnMouseReleased(release);
|
|
|