Index: chrome/browser/password_manager/password_store_x.cc |
diff --git a/chrome/browser/password_manager/password_store_x.cc b/chrome/browser/password_manager/password_store_x.cc |
index cc6b6cf6c780a5ca34329859a4dadbea0109c5a4..43c80c45bbb561528008f136db216363c7966de7 100644 |
--- a/chrome/browser/password_manager/password_store_x.cc |
+++ b/chrome/browser/password_manager/password_store_x.cc |
@@ -19,9 +19,9 @@ |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/notification_service.h" |
+using autofill::PasswordForm; |
using content::BrowserThread; |
using std::vector; |
-using content::PasswordForm; |
PasswordStoreX::PasswordStoreX(LoginDatabase* login_db, |
Profile* profile, |
@@ -117,10 +117,10 @@ void PasswordStoreX::SortLoginsByOrigin(NativeBackend::PasswordFormList* list) { |
} |
void PasswordStoreX::GetLoginsImpl( |
- const content::PasswordForm& form, |
+ const autofill::PasswordForm& form, |
const ConsumerCallbackRunner& callback_runner) { |
CheckMigration(); |
- std::vector<content::PasswordForm*> matched_forms; |
+ std::vector<autofill::PasswordForm*> matched_forms; |
if (use_native_backend() && backend_->GetLogins(form, &matched_forms)) { |
SortLoginsByOrigin(&matched_forms); |
callback_runner.Run(matched_forms); |