Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4175)

Unified Diff: chrome/browser/chromeos/login/screen_locker_browsertest.cc

Issue 2809065: fix build breakage. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/screen_locker_browsertest.cc
diff --git a/chrome/browser/chromeos/login/screen_locker_browsertest.cc b/chrome/browser/chromeos/login/screen_locker_browsertest.cc
index 9e824515c9c747fea2e6fd3453f23baf2d225c72..cd79a6dde0dc0a6e8d002596ae930182afdff518 100644
--- a/chrome/browser/chromeos/login/screen_locker_browsertest.cc
+++ b/chrome/browser/chromeos/login/screen_locker_browsertest.cc
@@ -243,16 +243,16 @@ IN_PROC_BROWSER_TEST_F(ScreenLockerTest, TestShowTwice) {
tester->EmulateWindowManagerReady();
ui_test_utils::WaitForNotification(
NotificationType::SCREEN_LOCK_STATE_CHANGED);
- EXPECT_TRUE(tester->IsOpen());
+ EXPECT_TRUE(tester->IsLocked());
// Calling Show again simply send LockCompleted signal.
ScreenLocker::Show();
- EXPECT_TRUE(tester->IsOpen());
+ EXPECT_TRUE(tester->IsLocked());
// Close the locker to match expectations.
ScreenLocker::Hide();
ui_test_utils::RunAllPendingInMessageLoop();
- EXPECT_FALSE(tester->IsOpen());
+ EXPECT_FALSE(tester->IsLocked());
}
} // namespace chromeos
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698