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

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

Issue 2854055: Send UnlockCompleted signal even if screen lock is already present. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: browsertest fix 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 | chrome/browser/chromeos/login/screen_locker_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/screen_locker.cc
diff --git a/chrome/browser/chromeos/login/screen_locker.cc b/chrome/browser/chromeos/login/screen_locker.cc
index 23affad10eab62358e1d89710eedfdfb8898fa3a..a6a07634ad6a34734c296427ba56a054aff3b3cb 100644
--- a/chrome/browser/chromeos/login/screen_locker.cc
+++ b/chrome/browser/chromeos/login/screen_locker.cc
@@ -589,7 +589,10 @@ void ScreenLocker::Show() {
new ScreenLocker(UserManager::Get()->logged_in_user());
locker->Init();
} else {
- LOG(INFO) << "Show(): screen locker already exists. ignoring";
+ LOG(INFO) << "Show(): screen locker already exists. "
+ << "just sending completion event";
+ if (CrosLibrary::Get()->EnsureLoaded())
+ CrosLibrary::Get()->GetScreenLockLibrary()->NotifyScreenLockCompleted();
}
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698