Index: chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
index bb872fd882f66ef3738d686557229083dc8e7c1d..0539e04e3598b15d2a5fe23ed0275a1af6ff4a12 100644 |
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
@@ -452,7 +452,7 @@ class ProfileSyncServiceAutofillTest : public AbstractProfileSyncServiceTest { |
sync_pb::EntitySpecifics specifics; |
AutocompleteSyncableService::WriteAutofillEntry(entry, &specifics); |
sync_pb::AutofillSpecifics* autofill_specifics = |
- specifics.MutableExtension(sync_pb::autofill); |
+ specifics.mutable_autofill(); |
node.SetAutofillSpecifics(*autofill_specifics); |
return true; |
} |
@@ -470,7 +470,7 @@ class ProfileSyncServiceAutofillTest : public AbstractProfileSyncServiceTest { |
sync_pb::EntitySpecifics specifics; |
AutofillProfileSyncableService::WriteAutofillProfile(profile, &specifics); |
sync_pb::AutofillProfileSpecifics* profile_specifics = |
- specifics.MutableExtension(sync_pb::autofill_profile); |
+ specifics.mutable_autofill_profile(); |
node.SetAutofillProfileSpecifics(*profile_specifics); |
return true; |
} |
@@ -663,8 +663,7 @@ class FakeServerUpdater : public base::RefCountedThreadSafe<FakeServerUpdater> { |
} |
sync_pb::EntitySpecifics entity_specifics; |
- entity_specifics.MutableExtension(sync_pb::autofill)-> |
- CopyFrom(new_autofill); |
+ entity_specifics.mutable_autofill()->CopyFrom(new_autofill); |
{ |
// Tell main thread we've started |