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

Unified Diff: chrome/browser/password_manager/password_store_mac.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/password_manager/password_store_mac.cc
diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
index 33aec570b9a9ba91dae356d900a79057d0b4ded6..5d18ff248302fa3f313e4d1e69cf646cfafca118 100644
--- a/chrome/browser/password_manager/password_store_mac.cc
+++ b/chrome/browser/password_manager/password_store_mac.cc
@@ -935,7 +935,7 @@ void PasswordStoreMac::GetAutofillableLoginsImpl(GetLoginsRequest* request) {
bool PasswordStoreMac::FillAutofillableLogins(
std::vector<PasswordForm*>* forms) {
- DCHECK(thread_->message_loop() == MessageLoop::current());
+ DCHECK(thread_->message_loop() == base::MessageLoop::current());
std::vector<PasswordForm*> database_forms;
login_metadata_db_->GetAutofillableLogins(&database_forms);
@@ -954,7 +954,7 @@ bool PasswordStoreMac::FillAutofillableLogins(
bool PasswordStoreMac::FillBlacklistLogins(
std::vector<PasswordForm*>* forms) {
- DCHECK(thread_->message_loop() == MessageLoop::current());
+ DCHECK(thread_->message_loop() == base::MessageLoop::current());
return login_metadata_db_->GetBlacklistLogins(forms);
}

Powered by Google App Engine
This is Rietveld 408576698