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

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

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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
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 853d62152916106f70cd07a07a754d5ed18e5435..3abd60b211947b9355dcd245cf89d111be2ffb28 100644
--- a/chrome/browser/chromeos/login/screen_locker.cc
+++ b/chrome/browser/chromeos/login/screen_locker.cc
@@ -222,7 +222,7 @@ void ScreenLocker::OnLoginSuccess(
} else {
// Add guard for case when something get broken in call chain to unlock
// for sure.
- MessageLoop::current()->PostDelayedTask(
+ base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&ScreenLocker::UnlockOnLoginSuccess,
weak_factory_.GetWeakPtr()),
@@ -232,7 +232,7 @@ void ScreenLocker::OnLoginSuccess(
}
void ScreenLocker::UnlockOnLoginSuccess() {
- DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI);
+ DCHECK(base::MessageLoop::current()->type() == base::MessageLoop::TYPE_UI);
if (!authentication_capture_.get()) {
LOG(WARNING) << "Call to UnlockOnLoginSuccess without previous " <<
"authentication success.";
@@ -312,7 +312,7 @@ void ScreenLocker::SetLoginStatusConsumer(
// static
void ScreenLocker::Show() {
content::RecordAction(UserMetricsAction("ScreenLocker_Show"));
- DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI);
+ DCHECK(base::MessageLoop::current()->type() == base::MessageLoop::TYPE_UI);
// Check whether the currently logged in user is a guest account and if so,
// refuse to lock the screen (crosbug.com/23764).
@@ -349,7 +349,7 @@ void ScreenLocker::Show() {
// static
void ScreenLocker::Hide() {
- DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI);
+ DCHECK(base::MessageLoop::current()->type() == base::MessageLoop::TYPE_UI);
// For a guest/demo user, screen_locker_ would have never been initialized.
if (UserManager::Get()->IsLoggedInAsGuest() ||
UserManager::Get()->IsLoggedInAsDemoUser()) {
@@ -371,7 +371,7 @@ void ScreenLocker::ScheduleDeletion() {
VLOG(1) << "Posting task to delete ScreenLocker " << screen_locker_;
ScreenLocker* screen_locker = screen_locker_;
screen_locker_ = NULL;
- MessageLoopForUI::current()->DeleteSoon(FROM_HERE, screen_locker);
+ base::MessageLoopForUI::current()->DeleteSoon(FROM_HERE, screen_locker);
}
// static
@@ -384,7 +384,7 @@ void ScreenLocker::InitClass() {
ScreenLocker::~ScreenLocker() {
VLOG(1) << "Destroying ScreenLocker " << this;
- DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI);
+ DCHECK(base::MessageLoop::current()->type() == base::MessageLoop::TYPE_UI);
if (authenticator_)
authenticator_->SetConsumer(NULL);

Powered by Google App Engine
This is Rietveld 408576698