| Index: components/autofill/content/renderer/form_autofill_util.cc
 | 
| diff --git a/components/autofill/content/renderer/form_autofill_util.cc b/components/autofill/content/renderer/form_autofill_util.cc
 | 
| index c9ebc62c3996f80d2205c16dd60be43d3a05382f..3a00eb2375ea89cabe63eaed88c4e11fc7f2b716 100644
 | 
| --- a/components/autofill/content/renderer/form_autofill_util.cc
 | 
| +++ b/components/autofill/content/renderer/form_autofill_util.cc
 | 
| @@ -1183,7 +1183,7 @@ void WebFormControlElementToFormField(const WebFormControlElement& element,
 | 
|      // attribute was present.
 | 
|      field->autocomplete_attribute = "x-max-data-length-exceeded";
 | 
|    }
 | 
| -  if (LowerCaseEqualsASCII(element.getAttribute(kRole), "presentation"))
 | 
| +  if (base::LowerCaseEqualsASCII(element.getAttribute(kRole), "presentation"))
 | 
|      field->role = FormFieldData::ROLE_ATTRIBUTE_PRESENTATION;
 | 
|  
 | 
|    if (!IsAutofillableElement(element))
 | 
| 
 |