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

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

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/tpm_password_fetcher.cc
diff --git a/chrome/browser/chromeos/login/tpm_password_fetcher.cc b/chrome/browser/chromeos/login/tpm_password_fetcher.cc
index e4db8b948a2d87f74c31ff2f545e92ff31ba8d72..00cb64bcd15dda69861beeb61d8bfd13defc5186 100644
--- a/chrome/browser/chromeos/login/tpm_password_fetcher.cc
+++ b/chrome/browser/chromeos/login/tpm_password_fetcher.cc
@@ -66,7 +66,7 @@ void TpmPasswordFetcher::OnTpmGetPassword(DBusMethodCallStatus call_status,
}
void TpmPasswordFetcher::RescheduleFetch() {
- MessageLoop::current()->PostDelayedTask(
+ base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&TpmPasswordFetcher::Fetch, weak_factory_.GetWeakPtr()),
base::TimeDelta::FromMilliseconds(kTpmCheckIntervalMs));

Powered by Google App Engine
This is Rietveld 408576698