| Index: ui/views/view_unittest.cc
|
| diff --git a/ui/views/view_unittest.cc b/ui/views/view_unittest.cc
|
| index 264da270b417122b8b93fcd592f2ecdb6b327f47..c8964874df0a0b848b5a754997cfa5c4a0bd909b 100644
|
| --- a/ui/views/view_unittest.cc
|
| +++ b/ui/views/view_unittest.cc
|
| @@ -2770,9 +2770,9 @@ TEST_F(ViewTest, ReorderChildren) {
|
| child->AddChildView(foo2);
|
| View* foo3 = new View();
|
| child->AddChildView(foo3);
|
| - foo1->set_focusable(true);
|
| - foo2->set_focusable(true);
|
| - foo3->set_focusable(true);
|
| + foo1->SetFocusable(true);
|
| + foo2->SetFocusable(true);
|
| + foo3->SetFocusable(true);
|
|
|
| ASSERT_EQ(0, child->GetIndexOf(foo1));
|
| ASSERT_EQ(1, child->GetIndexOf(foo2));
|
|
|