diff options
Diffstat (limited to 'sync/internal_api/change_record.cc')
-rw-r--r-- | sync/internal_api/change_record.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sync/internal_api/change_record.cc b/sync/internal_api/change_record.cc index b956c9b..7e50e60 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& |