Index: ui/views/touchui/touch_selection_controller_impl_unittest.cc |
diff --git a/ui/views/touchui/touch_selection_controller_impl_unittest.cc b/ui/views/touchui/touch_selection_controller_impl_unittest.cc |
index acd62ffca03c6699e83ab1578900200236090d73..b268d2c76e648426f5c98adbabe9e271198b5a38 100644 |
--- a/ui/views/touchui/touch_selection_controller_impl_unittest.cc |
+++ b/ui/views/touchui/touch_selection_controller_impl_unittest.cc |
@@ -252,11 +252,9 @@ TEST_F(TouchSelectionControllerImplTest, SelectionInTextfieldTest) { |
CreateTextfield(); |
textfield_->SetText(ASCIIToUTF16("some text")); |
// Tap the textfield to invoke touch selection. |
- ui::GestureEvent tap(0, |
- 0, |
- 0, |
- base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f)); |
+ ui::GestureEventDetails details(ui::ET_GESTURE_TAP); |
+ details.set_tap_count(1); |
+ ui::GestureEvent tap(0, 0, 0, base::TimeDelta(), details); |
textfield_->OnGestureEvent(&tap); |
// Test selecting a range. |
@@ -287,11 +285,9 @@ TEST_F(TouchSelectionControllerImplTest, SelectionInBidiTextfieldTest) { |
CreateTextfield(); |
textfield_->SetText(WideToUTF16(L"abc\x05d0\x05d1\x05d2")); |
// Tap the textfield to invoke touch selection. |
- ui::GestureEvent tap(0, |
- 0, |
- 0, |
- base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f)); |
+ ui::GestureEventDetails details(ui::ET_GESTURE_TAP); |
+ details.set_tap_count(1); |
+ ui::GestureEvent tap(0, 0, 0, base::TimeDelta(), details); |
textfield_->OnGestureEvent(&tap); |
// Test cursor at run boundary and with empty selection. |
@@ -338,11 +334,9 @@ TEST_F(TouchSelectionControllerImplTest, SelectRectCallbackTest) { |
CreateTextfield(); |
textfield_->SetText(ASCIIToUTF16("textfield with selected text")); |
// Tap the textfield to invoke touch selection. |
- ui::GestureEvent tap(0, |
- 0, |
- 0, |
- base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f)); |
+ ui::GestureEventDetails details(ui::ET_GESTURE_TAP); |
+ details.set_tap_count(1); |
+ ui::GestureEvent tap(0, 0, 0, base::TimeDelta(), details); |
textfield_->OnGestureEvent(&tap); |
textfield_->SelectRange(gfx::Range(3, 7)); |
@@ -379,11 +373,9 @@ TEST_F(TouchSelectionControllerImplTest, SelectRectInBidiCallbackTest) { |
CreateTextfield(); |
textfield_->SetText(WideToUTF16(L"abc\x05e1\x05e2\x05e3" L"def")); |
// Tap the textfield to invoke touch selection. |
- ui::GestureEvent tap(0, |
- 0, |
- 0, |
- base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f)); |
+ ui::GestureEventDetails details(ui::ET_GESTURE_TAP); |
+ details.set_tap_count(1); |
+ ui::GestureEvent tap(0, 0, 0, base::TimeDelta(), details); |
textfield_->OnGestureEvent(&tap); |
// Select [c] from left to right. |
@@ -511,11 +503,9 @@ TEST_F(TouchSelectionControllerImplTest, |
textfield_->SetText(ASCIIToUTF16(textfield_text)); |
// Tap the textfield to invoke selection. |
- ui::GestureEvent tap(0, |
- 0, |
- 0, |
- base::TimeDelta(), |
- ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f)); |
+ ui::GestureEventDetails details(ui::ET_GESTURE_TAP); |
+ details.set_tap_count(1); |
+ ui::GestureEvent tap(0, 0, 0, base::TimeDelta(), details); |
textfield_->OnGestureEvent(&tap); |
// Select some text such that one handle is hidden. |