Index: chrome/browser/ui/autofill/autofill_dialog_common.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_common.cc b/chrome/browser/ui/autofill/autofill_dialog_common.cc |
index 2a3eeb2e634cef7b4873816f623a56181ec6587f..fd2cadce4333e02f406500bec99a1db0662909b2 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_common.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_common.cc |
@@ -43,6 +43,10 @@ bool ServerTypeEncompassesFieldType(ServerFieldType type, |
return autofill_type.GetStorableType() == ADDRESS_HOME_STREET_ADDRESS; |
} |
+ // First, middle and last name are parsed from full name. |
+ if (field_type.group() == NAME || field_type.group() == NAME_BILLING) |
+ return autofill_type.GetStorableType() == NAME_FULL; |
+ |
return autofill_type.GetStorableType() == server_type; |
} |