| Index: ash/wm/lock_state_controller_unittest.cc
|
| diff --git a/ash/wm/lock_state_controller_unittest.cc b/ash/wm/lock_state_controller_unittest.cc
|
| index a1484cf1d32da5aaac7ab021e0c617524853ad9e..5c18242aa0338b5701c5c2a61424de4d4105f931 100644
|
| --- a/ash/wm/lock_state_controller_unittest.cc
|
| +++ b/ash/wm/lock_state_controller_unittest.cc
|
| @@ -277,13 +277,13 @@ class LockStateControllerTest : public AshTestBase {
|
| void ExpectUnlockedState() {
|
| SCOPED_TRACE("Failure in ExpectUnlockedState");
|
| EXPECT_EQ(0u, test_animator_->GetAnimationCount());
|
| - EXPECT_FALSE(WmShell::Get()->session_controller()->IsScreenLocked());
|
| + EXPECT_FALSE(Shell::Get()->session_controller()->IsScreenLocked());
|
| }
|
|
|
| void ExpectLockedState() {
|
| SCOPED_TRACE("Failure in ExpectLockedState");
|
| EXPECT_EQ(0u, test_animator_->GetAnimationCount());
|
| - EXPECT_TRUE(WmShell::Get()->session_controller()->IsScreenLocked());
|
| + EXPECT_TRUE(Shell::Get()->session_controller()->IsScreenLocked());
|
| }
|
|
|
| void HideWallpaper() { test_animator_->HideWallpaper(); }
|
| @@ -314,7 +314,7 @@ class LockStateControllerTest : public AshTestBase {
|
|
|
| void SystemLocks() {
|
| lock_state_controller_->OnLockStateChanged(true);
|
| - WmShell::Get()->session_controller()->LockScreenAndFlushForTest();
|
| + Shell::Get()->session_controller()->LockScreenAndFlushForTest();
|
| }
|
|
|
| void SuccessfulAuthentication(bool* call_flag) {
|
|
|