Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1213)

Unified Diff: components/autofill/content/renderer/form_autofill_util.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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))

Powered by Google App Engine
This is Rietveld 408576698