| Index: chrome/browser/password_manager/password_store_default.cc
|
| diff --git a/chrome/browser/password_manager/password_store_default.cc b/chrome/browser/password_manager/password_store_default.cc
|
| index c5be4c9aa40c2ab28282e0ffb9af0d8260bffe3e..25ee978c4f5f23c0173e23d186e1a36e3a38c7be 100644
|
| --- a/chrome/browser/password_manager/password_store_default.cc
|
| +++ b/chrome/browser/password_manager/password_store_default.cc
|
| @@ -17,8 +17,8 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
|
|
| +using autofill::PasswordForm;
|
| using content::BrowserThread;
|
| -using content::PasswordForm;
|
|
|
| PasswordStoreDefault::PasswordStoreDefault(LoginDatabase* login_db,
|
| Profile* profile)
|
| @@ -94,7 +94,7 @@ void PasswordStoreDefault::RemoveLoginsCreatedBetweenImpl(
|
| }
|
|
|
| void PasswordStoreDefault::GetLoginsImpl(
|
| - const content::PasswordForm& form,
|
| + const autofill::PasswordForm& form,
|
| const ConsumerCallbackRunner& callback_runner) {
|
| std::vector<PasswordForm*> matched_forms;
|
| login_db_->GetLogins(form, &matched_forms);
|
|
|