| Index: ui/views/controls/textfield/textfield_unittest.cc
|
| diff --git a/ui/views/controls/textfield/textfield_unittest.cc b/ui/views/controls/textfield/textfield_unittest.cc
|
| index dc14cc4a209afe6058e84dcf49c39f7939281959..55631ce38cb7aacbeb4908ea8b69f88166929adc 100644
|
| --- a/ui/views/controls/textfield/textfield_unittest.cc
|
| +++ b/ui/views/controls/textfield/textfield_unittest.cc
|
| @@ -1499,9 +1499,9 @@ TEST_F(TextfieldTest, DragUpOrDownSelectsToEnd) {
|
| InitTextfield();
|
| textfield_->SetText(ASCIIToUTF16("hello world"));
|
| const base::string16 expected_up = base::ASCIIToUTF16(
|
| - PlatformStyle::kTextfieldDragVerticallyDragsToEnd ? "hello" : "lo");
|
| + PlatformStyle::kTextDragVerticallyDragsToEnd ? "hello" : "lo");
|
| const base::string16 expected_down = base::ASCIIToUTF16(
|
| - PlatformStyle::kTextfieldDragVerticallyDragsToEnd ? " world" : " w");
|
| + PlatformStyle::kTextDragVerticallyDragsToEnd ? " world" : " w");
|
| const int kStartX = GetCursorPositionX(5);
|
| const int kDownX = GetCursorPositionX(7);
|
| const int kUpX = GetCursorPositionX(3);
|
|
|