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

Unified Diff: components/autofill/core/browser/contact_info.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/core/browser/contact_info.cc
diff --git a/components/autofill/core/browser/contact_info.cc b/components/autofill/core/browser/contact_info.cc
index b320a81ee5552a51f97e01438ee0400fa79770de..06be1315c33ee3e7853e4dda9f924dbfc962fe99 100644
--- a/components/autofill/core/browser/contact_info.cc
+++ b/components/autofill/core/browser/contact_info.cc
@@ -44,7 +44,7 @@ bool ContainsString(const char* const set[],
base::TrimString(element, base::ASCIIToUTF16("."), &trimmed_element);
for (size_t i = 0; i < set_size; ++i) {
- if (LowerCaseEqualsASCII(trimmed_element, set[i]))
+ if (base::LowerCaseEqualsASCII(trimmed_element, set[i]))
return true;
}
« no previous file with comments | « components/autofill/core/browser/autofill_country.cc ('k') | components/autofill/core/browser/credit_card_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698