Index: ash/shell_unittest.cc |
diff --git a/ash/shell_unittest.cc b/ash/shell_unittest.cc |
index 8885320cd5c267e9c4f0210782580abe2a67289a..5e17b950eec6c5783a54a500c7825eef295ad54e 100644 |
--- a/ash/shell_unittest.cc |
+++ b/ash/shell_unittest.cc |
@@ -318,19 +318,19 @@ TEST_F(ShellTest, FullscreenWindowHidesShelf) { |
// Shelf defaults to visible. |
EXPECT_EQ( |
- internal::ShelfLayoutManager::VISIBLE, |
+ SHELF_VISIBLE, |
Shell::GetPrimaryRootWindowController()->shelf()->visibility_state()); |
// Fullscreen window hides it. |
widget->SetFullscreen(true); |
EXPECT_EQ( |
- internal::ShelfLayoutManager::HIDDEN, |
+ SHELF_HIDDEN, |
Shell::GetPrimaryRootWindowController()->shelf()->visibility_state()); |
// Restoring the window restores it. |
widget->Restore(); |
EXPECT_EQ( |
- internal::ShelfLayoutManager::VISIBLE, |
+ SHELF_VISIBLE, |
Shell::GetPrimaryRootWindowController()->shelf()->visibility_state()); |
// Clean up. |