Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5716)

Unified Diff: chrome/browser/sync/profile_sync_service_autofill_unittest.cc

Issue 1582353006: CountryNames: Separate data creation from usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@571610_exposeCountryNamesToTesting
Patch Set: More Android fixes Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698