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

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

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/autofill_agent.cc
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc
index ab9bfae2cc956d59d0b93a3ca2b35b0ef60aa9d9..bd7d86111e5991eb3ff594ed219db8b3dc7b7520 100644
--- a/components/autofill/content/renderer/autofill_agent.cc
+++ b/components/autofill/content/renderer/autofill_agent.cc
@@ -601,7 +601,7 @@ void AutofillAgent::ShowSuggestions(const WebFormControlElement& element,
// disabled for *both* the element and for the form.
const base::string16 autocomplete_attribute =
element.getAttribute("autocomplete");
- if (LowerCaseEqualsASCII(autocomplete_attribute, "off"))
+ if (base::LowerCaseEqualsASCII(autocomplete_attribute, "off"))
display_warning_if_disabled = false;
QueryAutofillSuggestions(element,

Powered by Google App Engine
This is Rietveld 408576698