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

Unified Diff: chrome/browser/sync/test/integration/autofill_helper.cc

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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/test/integration/autofill_helper.cc
diff --git a/chrome/browser/sync/test/integration/autofill_helper.cc b/chrome/browser/sync/test/integration/autofill_helper.cc
index 4227e248979c9da0539a540f352bed00a385421e..7ca0a9700e31f8e56f1c193732535e8987b15634 100644
--- a/chrome/browser/sync/test/integration/autofill_helper.cc
+++ b/chrome/browser/sync/test/integration/autofill_helper.cc
@@ -96,7 +96,7 @@ AutofillProfile CreateAutofillProfile(ProfileType type) {
"Marion", "Mitchell", "Morrison",
"johnwayne@me.xyz", "Fox",
"123 Zoo St.", "unit 5", "Hollywood", "CA",
- "91601", "US", "12345678910", "01987654321");
+ "91601", "US", "12345678910");
break;
case PROFILE_HOMER:
autofill_test::SetProfileInfoWithGuid(&profile,
@@ -104,19 +104,19 @@ AutofillProfile CreateAutofillProfile(ProfileType type) {
"Homer", "J.", "Simpson",
"homer@abc.com", "SNPP",
"1 Main St", "PO Box 1", "Springfield", "MA",
- "94101", "US", "14155551212", "14155551313");
+ "94101", "US", "14155551212");
break;
case PROFILE_FRASIER:
autofill_test::SetProfileInfoWithGuid(&profile,
"9A5E6872-6198-4688-BF75-0016E781BB0A",
"Frasier", "Winslow", "Crane",
"", "randomness", "", "Apt. 4", "Seattle", "WA",
- "99121", "US", "0000000000", "ABCDEFGHIJK");
+ "99121", "US", "0000000000");
break;
case PROFILE_NULL:
autofill_test::SetProfileInfoWithGuid(&profile,
"FE461507-7E13-4198-8E66-74C7DB6D8322",
- "", "", "", "", "", "", "", "", "", "", "", "", "");
+ "", "", "", "", "", "", "", "", "", "", "", "");
break;
}
return profile;

Powered by Google App Engine
This is Rietveld 408576698