| 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 67b506d0bf78d604dd21711f9ba79a8ac81162c5..bb10d9144061ba8c0bd7e8d639f141469bbf54ed 100644
|
| --- a/chrome/browser/sync/glue/password_change_processor.cc
|
| +++ b/chrome/browser/sync/glue/password_change_processor.cc
|
| @@ -83,7 +83,7 @@ void PasswordChangeProcessor::Observe(
|
| case PasswordStoreChange::ADD: {
|
| syncer::WriteNode sync_node(&trans);
|
| syncer::WriteNode::InitUniqueByCreationResult result =
|
| - sync_node.InitUniqueByCreation(syncable::PASSWORDS, password_root,
|
| + sync_node.InitUniqueByCreation(syncer::PASSWORDS, password_root,
|
| tag);
|
| if (result == syncer::WriteNode::INIT_SUCCESS) {
|
| PasswordModelAssociator::WriteToSyncNode(change->form(), &sync_node);
|
| @@ -208,7 +208,7 @@ void PasswordChangeProcessor::ApplyChangesFromSyncModel(
|
|
|
| // Check that the changed node is a child of the passwords folder.
|
| DCHECK_EQ(password_root.GetId(), sync_node.GetParentId());
|
| - DCHECK_EQ(syncable::PASSWORDS, sync_node.GetModelType());
|
| + DCHECK_EQ(syncer::PASSWORDS, sync_node.GetModelType());
|
|
|
| const sync_pb::PasswordSpecificsData& password_data =
|
| sync_node.GetPasswordSpecifics();
|
|
|