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

Unified Diff: chrome/browser/password_manager/password_store_default.cc

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 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_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);

Powered by Google App Engine
This is Rietveld 408576698