summaryrefslogtreecommitdiffstats
path: root/ui/views/touchui/touch_selection_controller_impl_unittest.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-29 23:32:37 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-29 23:32:37 +0000
commit80876023433816bebf353a08489826d5db3ca840 (patch)
tree089a9294401b247dccf63795d5b80af5da648511 /ui/views/touchui/touch_selection_controller_impl_unittest.cc
parent290cef498071a8409fc418192f15b9ba94ddc2ae (diff)
downloadchromium_src-80876023433816bebf353a08489826d5db3ca840.zip
chromium_src-80876023433816bebf353a08489826d5db3ca840.tar.gz
chromium_src-80876023433816bebf353a08489826d5db3ca840.tar.bz2
c++11 ud suffix fixes for ash/views/ui files
No behavior change. BUG=263960 R=sky@chromium.org Review URL: https://codereview.chromium.org/21082004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214258 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/touchui/touch_selection_controller_impl_unittest.cc')
-rw-r--r--ui/views/touchui/touch_selection_controller_impl_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/views/touchui/touch_selection_controller_impl_unittest.cc b/ui/views/touchui/touch_selection_controller_impl_unittest.cc
index 83427fd..9177099 100644
--- a/ui/views/touchui/touch_selection_controller_impl_unittest.cc
+++ b/ui/views/touchui/touch_selection_controller_impl_unittest.cc
@@ -310,7 +310,7 @@ TEST_F(TouchSelectionControllerImplTest, SelectRectCallbackTest) {
TEST_F(TouchSelectionControllerImplTest, SelectRectInBidiCallbackTest) {
CreateTextfield();
- textfield_->SetText(WideToUTF16(L"abc\x05e1\x05e2\x05e3"L"def"));
+ textfield_->SetText(WideToUTF16(L"abc\x05e1\x05e2\x05e3" L"def"));
// Tap the textfield to invoke touch selection.
ui::GestureEvent tap(ui::ET_GESTURE_TAP, 0, 0, 0, base::TimeDelta(),
ui::GestureEventDetails(ui::ET_GESTURE_TAP, 1.0f, 0.0f), 0);
@@ -373,7 +373,7 @@ TEST_F(TouchSelectionControllerImplTest, SelectRectInBidiCallbackTest) {
// Drag selection handle 1 to right by 1 char.
x = textfield_->font().GetStringWidth(WideToUTF16(L"d"));
SimulateSelectionHandleDrag(gfx::Point(x, 0), 1);
- EXPECT_EQ(WideToUTF16(L"\x05e2\x05e3"L"d"), textfield_->GetSelectedText());
+ EXPECT_EQ(WideToUTF16(L"\x05e2\x05e3" L"d"), textfield_->GetSelectedText());
VERIFY_HANDLE_POSITIONS(true);
// Select [\x5e1] from left to right.
@@ -392,7 +392,7 @@ TEST_F(TouchSelectionControllerImplTest, SelectRectInBidiCallbackTest) {
// Drag selection handle 2 to right by 1 char.
x = textfield_->font().GetStringWidth(WideToUTF16(L"d"));
SimulateSelectionHandleDrag(gfx::Point(x, 0), 2);
- EXPECT_EQ(WideToUTF16(L"\x05e2\x05e3"L"d"), textfield_->GetSelectedText());
+ EXPECT_EQ(WideToUTF16(L"\x05e2\x05e3" L"d"), textfield_->GetSelectedText());
VERIFY_HANDLE_POSITIONS(false);
// Select [\x05r3] from right to left.