| 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)
|
|
|