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

Unified Diff: content/browser/accessibility/browser_accessibility.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: content/browser/accessibility/browser_accessibility.cc
diff --git a/content/browser/accessibility/browser_accessibility.cc b/content/browser/accessibility/browser_accessibility.cc
index fe71fef965aa95dfdd32a16d0c22d738e9430e99..babbd74e3afae8df8d4a4f1a6cb255364e3e1e94 100644
--- a/content/browser/accessibility/browser_accessibility.cc
+++ b/content/browser/accessibility/browser_accessibility.cc
@@ -596,7 +596,7 @@ bool BrowserAccessibility::GetHtmlAttribute(
const char* html_attr, std::string* value) const {
for (size_t i = 0; i < GetHtmlAttributes().size(); ++i) {
const std::string& attr = GetHtmlAttributes()[i].first;
- if (LowerCaseEqualsASCII(attr, html_attr)) {
+ if (base::LowerCaseEqualsASCII(attr, html_attr)) {
*value = GetHtmlAttributes()[i].second;
return true;
}
« no previous file with comments | « components/url_fixer/url_fixer.cc ('k') | content/browser/accessibility/browser_accessibility_state_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698