Index: chrome/browser/sync/protocol/autofill_specifics.proto |
diff --git a/chrome/browser/sync/protocol/autofill_specifics.proto b/chrome/browser/sync/protocol/autofill_specifics.proto |
index a53a75a07281ea696ec4fc1d25f330ca901b3a37..dab14e49773a148c7c5bbf57d53ab2a96682e810 100644 |
--- a/chrome/browser/sync/protocol/autofill_specifics.proto |
+++ b/chrome/browser/sync/protocol/autofill_specifics.proto |
@@ -40,6 +40,32 @@ message AutofillProfileSpecifics { |
optional string phone_fax_whole_number = 14; |
} |
+ |
+// An AutofillProfile. |
+message AutofillProfile2Specifics { |
+ // User-defined label. |
+ optional string guid = 1; |
+ |
+ // Contact info. |
+ optional string name_first = 2; |
+ optional string name_middle = 3; |
+ optional string name_last = 4; |
+ optional string email_address = 5; |
+ optional string company_name = 6; |
+ |
+ // Home address. |
+ optional string address_home_line1 = 7; |
+ optional string address_home_line2 = 8; |
+ optional string address_home_city = 9; |
+ optional string address_home_state = 10; |
+ optional string address_home_zip = 11; |
+ optional string address_home_country = 12; |
+ |
+ // Phone + fax. |
+ optional string phone_home_whole_number = 13; |
+ optional string phone_fax_whole_number = 14; |
+} |
+ |
message AutofillCreditCardSpecifics { |
// User-defined label (e.g. Amazon Visa). |
optional string label = 1; |
@@ -94,4 +120,5 @@ message AutofillSpecifics { |
extend EntitySpecifics { |
optional AutofillSpecifics autofill = 31729; |
+ optional AutofillProfile2Specifics autofill_profile = 63951; |
} |