diff options
Diffstat (limited to 'ash/shell_unittest.cc')
-rw-r--r-- | ash/shell_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/shell_unittest.cc b/ash/shell_unittest.cc index 6fbab6a..ec3c01d 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. |