Index: ash/wm/immersive_fullscreen_controller_unittest.cc |
diff --git a/ash/wm/immersive_fullscreen_controller_unittest.cc b/ash/wm/immersive_fullscreen_controller_unittest.cc |
index 94e3f018a1096226648baaf8c57b7e6ea37b9ec9..7e50916d227320d0abdb43f8581fbc6104e4feaf 100644 |
--- a/ash/wm/immersive_fullscreen_controller_unittest.cc |
+++ b/ash/wm/immersive_fullscreen_controller_unittest.cc |
@@ -131,7 +131,7 @@ class ImmersiveFullscreenControllerTest : public ash::test::AshTestBase { |
top_container_ = new views::View(); |
top_container_->SetBounds( |
0, 0, widget_->GetWindowBoundsInScreen().width(), 100); |
- top_container_->set_focusable(true); |
+ top_container_->SetFocusable(true); |
widget_->GetContentsView()->AddChildView(top_container_); |
delegate_.reset( |
@@ -684,11 +684,11 @@ TEST_F(ImmersiveFullscreenControllerTest, Focus) { |
// test. |
views::View* child_view = new views::View(); |
child_view->SetBounds(0, 0, 10, 10); |
- child_view->set_focusable(true); |
+ child_view->SetFocusable(true); |
top_container()->AddChildView(child_view); |
views::View* unrelated_view = new views::View(); |
unrelated_view->SetBounds(0, 100, 10, 10); |
- unrelated_view->set_focusable(true); |
+ unrelated_view->SetFocusable(true); |
top_container()->parent()->AddChildView(unrelated_view); |
views::FocusManager* focus_manager = |
top_container()->GetWidget()->GetFocusManager(); |