Index: components/autofill/core/browser/form_structure.cc |
diff --git a/components/autofill/core/browser/form_structure.cc b/components/autofill/core/browser/form_structure.cc |
index f31fbc6874d7d4cb9b38e5e0449eea647315a6a0..2bc79fbeace387590900c17444bdd78e5e4b180e 100644 |
--- a/components/autofill/core/browser/form_structure.cc |
+++ b/components/autofill/core/browser/form_structure.cc |
@@ -1017,7 +1017,7 @@ void FormStructure::ParseFieldTypesFromAutocompleteAttributes( |
// non-space characters (e.g. tab) to spaces, and converting to lowercase. |
std::string autocomplete_attribute = |
base::CollapseWhitespaceASCII(field->autocomplete_attribute, false); |
- autocomplete_attribute = StringToLowerASCII(autocomplete_attribute); |
+ autocomplete_attribute = base::StringToLowerASCII(autocomplete_attribute); |
// The autocomplete attribute is overloaded: it can specify either a field |
// type hint or whether autocomplete should be enabled at all. Ignore the |