Index: ash/root_window_controller_unittest.cc |
diff --git a/ash/root_window_controller_unittest.cc b/ash/root_window_controller_unittest.cc |
index fbbed698f057e33232c5063ddb2d86a21b6f733b..ff01846c1d65298fd559f998c623ca9ee90213e2 100644 |
--- a/ash/root_window_controller_unittest.cc |
+++ b/ash/root_window_controller_unittest.cc |
@@ -529,7 +529,7 @@ TEST_F(RootWindowControllerTest, DontDeleteWindowsNotOwnedByParent) { |
window1->SetType(ui::wm::WINDOW_TYPE_CONTROL); |
window1->set_owned_by_parent(false); |
observer1.SetWindow(window1); |
- window1->Init(ui::LAYER_NOT_DRAWN); |
+ window1->Init(aura::WINDOW_LAYER_NOT_DRAWN); |
aura::client::ParentWindowWithContext( |
window1, Shell::GetInstance()->GetPrimaryRootWindow(), gfx::Rect()); |
@@ -537,7 +537,7 @@ TEST_F(RootWindowControllerTest, DontDeleteWindowsNotOwnedByParent) { |
aura::Window* window2 = new aura::Window(NULL); |
window2->set_owned_by_parent(false); |
observer2.SetWindow(window2); |
- window2->Init(ui::LAYER_NOT_DRAWN); |
+ window2->Init(aura::WINDOW_LAYER_NOT_DRAWN); |
Shell::GetInstance()->GetPrimaryRootWindow()->AddChild(window2); |
Shell::GetInstance()->GetPrimaryRootWindowController()->CloseChildWindows(); |