| Index: chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| diff --git a/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc b/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| index 147e2efaab3866b017b8850c9e962c8ab4c80caf..11a4dc37c342e5ee1ac2d380b13ca06a57db540d 100644
|
| --- a/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| +++ b/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| @@ -169,7 +169,8 @@ TEST_F(AutofillProfileSyncableServiceTest, MergeDataAndStartSyncing) {
|
|
|
| // Takes ownership of sync_processor_.
|
| autofill_syncable_service_.MergeDataAndStartSyncing(
|
| - syncable::AUTOFILL_PROFILE, data_list, sync_processor_.release());
|
| + syncable::AUTOFILL_PROFILE, data_list,
|
| + sync_processor_.PassAs<SyncChangeProcessor>());
|
| autofill_syncable_service_.StopSyncing(syncable::AUTOFILL_PROFILE);
|
| }
|
|
|
| @@ -199,7 +200,8 @@ TEST_F(AutofillProfileSyncableServiceTest, GetAllSyncData) {
|
| SyncDataList data_list;
|
| // Takes ownership of sync_processor_.
|
| autofill_syncable_service_.MergeDataAndStartSyncing(
|
| - syncable::AUTOFILL_PROFILE, data_list, sync_processor_.release());
|
| + syncable::AUTOFILL_PROFILE, data_list,
|
| + sync_processor_.PassAs<SyncChangeProcessor>());
|
|
|
| SyncDataList data =
|
| autofill_syncable_service_.GetAllSyncData(syncable::AUTOFILL_PROFILE);
|
|
|