diff options
Diffstat (limited to 'chrome/browser/autofill')
-rw-r--r-- | chrome/browser/autofill/form_structure.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/autofill/form_structure.cc b/chrome/browser/autofill/form_structure.cc index 35e2f90..d1ca6d1 100644 --- a/chrome/browser/autofill/form_structure.cc +++ b/chrome/browser/autofill/form_structure.cc @@ -190,6 +190,9 @@ AutofillFieldType FieldTypeFromAutocompleteType( return CREDIT_CARD_EXP_4_DIGIT_YEAR; } + if (autocomplete_type == "cc-csc") + return CREDIT_CARD_VERIFICATION_CODE; + if (autocomplete_type == "tel") return PHONE_HOME_WHOLE_NUMBER; |