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

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_x.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/native_backend_kwallet_x.cc
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.cc b/chrome/browser/password_manager/native_backend_kwallet_x.cc
index 41c89e98820150afc94ade63b2bdbf5e17848d2c..0a7d3afbad0c973a66054f533dbc233235bb7a3d 100644
--- a/chrome/browser/password_manager/native_backend_kwallet_x.cc
+++ b/chrome/browser/password_manager/native_backend_kwallet_x.cc
@@ -21,8 +21,8 @@
#include "grit/chromium_strings.h"
#include "ui/base/l10n/l10n_util.h"
+using autofill::PasswordForm;
using content::BrowserThread;
-using content::PasswordForm;
namespace {
@@ -43,8 +43,8 @@ const char kKLauncherInterface[] = "org.kde.KLauncher";
// If |update_check| is false, we only check the fields that are checked by
// LoginDatabase::UpdateLogin() when updating logins; otherwise, we check the
// fields that are checked by LoginDatabase::RemoveLogin() for removing them.
-bool CompareForms(const content::PasswordForm& a,
- const content::PasswordForm& b,
+bool CompareForms(const autofill::PasswordForm& a,
+ const autofill::PasswordForm& b,
bool update_check) {
// An update check doesn't care about the submit element.
if (!update_check && a.submit_element != b.submit_element)

Powered by Google App Engine
This is Rietveld 408576698