| Index: chrome/browser/sync/glue/password_change_processor.cc
|
| diff --git a/chrome/browser/sync/glue/password_change_processor.cc b/chrome/browser/sync/glue/password_change_processor.cc
|
| index e6969b7b7ae16f7478c4e52b42eeece763559a12..346c6dd46c83f0efeb05a6eab4ac9d66205822e6 100644
|
| --- a/chrome/browser/sync/glue/password_change_processor.cc
|
| +++ b/chrome/browser/sync/glue/password_change_processor.cc
|
| @@ -15,9 +15,9 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/sync/glue/password_model_associator.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| +#include "components/autofill/core/common/password_form.h"
|
| #include "content/public/browser/notification_details.h"
|
| #include "content/public/browser/notification_source.h"
|
| -#include "content/public/common/password_form.h"
|
| #include "sync/internal_api/public/change_record.h"
|
| #include "sync/internal_api/public/read_node.h"
|
| #include "sync/internal_api/public/write_node.h"
|
| @@ -192,7 +192,7 @@ void PasswordChangeProcessor::ApplyChangesFromSyncModel(
|
| syncer::ExtraPasswordChangeRecordData* extra =
|
| it->extra.get();
|
| const sync_pb::PasswordSpecificsData& password = extra->unencrypted();
|
| - content::PasswordForm form;
|
| + autofill::PasswordForm form;
|
| PasswordModelAssociator::CopyPassword(password, &form);
|
| deleted_passwords_.push_back(form);
|
| model_associator_->Disassociate(it->id);
|
| @@ -212,7 +212,7 @@ void PasswordChangeProcessor::ApplyChangesFromSyncModel(
|
|
|
| const sync_pb::PasswordSpecificsData& password_data =
|
| sync_node.GetPasswordSpecifics();
|
| - content::PasswordForm password;
|
| + autofill::PasswordForm password;
|
| PasswordModelAssociator::CopyPassword(password_data, &password);
|
|
|
| if (syncer::ChangeRecord::ACTION_ADD == it->action) {
|
|
|