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 706d28c7ba7268c9e1a1f4eb3cfc2d2f019a3dce..e734cdb607556c419c7bc8c2914aa6b3e9cabd0a 100644 |
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc |
@@ -607,7 +607,7 @@ class ProfileSyncServiceAutofillTest |
AutofillProfile p; |
p.set_guid(autofill.profile().guid()); |
AutofillProfileSyncableService::OverwriteProfileWithServerData( |
- autofill.profile(), &p, "en-US"); |
+ autofill.profile(), &p); |
profiles->push_back(p); |
} |
child_id = child_node.GetSuccessorId(); |
@@ -633,8 +633,8 @@ class ProfileSyncServiceAutofillTest |
child_node.GetEntitySpecifics().autofill_profile()); |
AutofillProfile p; |
p.set_guid(autofill.guid()); |
- AutofillProfileSyncableService::OverwriteProfileWithServerData( |
- autofill, &p, "en-US"); |
+ AutofillProfileSyncableService::OverwriteProfileWithServerData(autofill, |
+ &p); |
profiles->push_back(p); |
child_id = child_node.GetSuccessorId(); |
} |