| Index: sync/internal_api/change_record.cc
|
| diff --git a/sync/internal_api/change_record.cc b/sync/internal_api/change_record.cc
|
| index b956c9b0703d0295a126d937014a13d74988dfa3..7e50e602e27308b929725b8342c75f2b1a140ba9 100644
|
| --- a/sync/internal_api/change_record.cc
|
| +++ b/sync/internal_api/change_record.cc
|
| @@ -41,8 +41,7 @@ DictionaryValue* ChangeRecord::ToValue() const {
|
| if (extra.get()) {
|
| value->Set("extra", extra->ToValue());
|
| }
|
| - value->Set("specifics",
|
| - syncer::EntitySpecificsToValue(specifics));
|
| + value->Set("specifics", EntitySpecificsToValue(specifics));
|
| }
|
| return value;
|
| }
|
| @@ -57,7 +56,7 @@ ExtraPasswordChangeRecordData::ExtraPasswordChangeRecordData(
|
| ExtraPasswordChangeRecordData::~ExtraPasswordChangeRecordData() {}
|
|
|
| DictionaryValue* ExtraPasswordChangeRecordData::ToValue() const {
|
| - return syncer::PasswordSpecificsDataToValue(unencrypted_);
|
| + return PasswordSpecificsDataToValue(unencrypted_);
|
| }
|
|
|
| const sync_pb::PasswordSpecificsData&
|
|
|