summaryrefslogtreecommitdiffstats
path: root/sync
diff options
context:
space:
mode:
Diffstat (limited to 'sync')
-rw-r--r--sync/protocol/autofill_specifics.proto1
-rw-r--r--sync/protocol/proto_value_conversions.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/sync/protocol/autofill_specifics.proto b/sync/protocol/autofill_specifics.proto
index 64d8e1e..a772b0ee 100644
--- a/sync/protocol/autofill_specifics.proto
+++ b/sync/protocol/autofill_specifics.proto
@@ -25,6 +25,7 @@ message AutofillProfileSpecifics {
repeated string name_first = 2;
repeated string name_middle = 3;
repeated string name_last = 4;
+ repeated string name_full = 21;
repeated string email_address = 5;
optional string company_name = 6;
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc
index 5ea434c..8e58af4 100644
--- a/sync/protocol/proto_value_conversions.cc
+++ b/sync/protocol/proto_value_conversions.cc
@@ -441,6 +441,7 @@ base::DictionaryValue* AutofillProfileSpecificsToValue(
SET_STR_REP(name_first);
SET_STR_REP(name_middle);
SET_STR_REP(name_last);
+ SET_STR_REP(name_full);
SET_STR_REP(email_address);
SET_STR(company_name);