summaryrefslogtreecommitdiffstats
path: root/ui/views/touchui/touch_selection_controller_impl_unittest.cc
diff options
context:
space:
mode:
authorlanwei <lanwei@chromium.org>2014-09-17 10:54:12 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-17 17:54:27 +0000
commit66e0c057b87824c6e6928f359fa56a8ee45ae6e2 (patch)
tree508d5ae0eb272e89870546463a4f20eab6a3bb09 /ui/views/touchui/touch_selection_controller_impl_unittest.cc
parentbfb71fc03179ac0d88c6b6d188915cf0dd363071 (diff)
downloadchromium_src-66e0c057b87824c6e6928f359fa56a8ee45ae6e2.zip
chromium_src-66e0c057b87824c6e6928f359fa56a8ee45ae6e2.tar.gz
chromium_src-66e0c057b87824c6e6928f359fa56a8ee45ae6e2.tar.bz2
Clean up GestureEventDetails constructors and fix unit tests.
A new version of Issue 565583005: Clean up GestureEventDetails constructors https://codereview.chromium.org/565583005/ BUG=350942 TBR=tdresser@chromium.org, jdduke@chromium.org, sadrul@chromium.org Committed: https://crrev.com/874611d5ab5b879648682c1ea41062bebc9c95e5 Cr-Commit-Position: refs/heads/master@{#295144} Review URL: https://codereview.chromium.org/573963005 Cr-Commit-Position: refs/heads/master@{#295296}
Diffstat (limited to 'ui/views/touchui/touch_selection_controller_impl_unittest.cc')
-rw-r--r--ui/views/touchui/touch_selection_controller_impl_unittest.cc40
1 files changed, 15 insertions, 25 deletions
diff --git a/ui/views/touchui/touch_selection_controller_impl_unittest.cc b/ui/views/touchui/touch_selection_controller_impl_unittest.cc
index acd62ff..b268d2c 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.