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

Unified Diff: content/browser/accessibility/browser_accessibility.cc

Issue 1176583003: Move EqualsASCII to the base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util2
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
« no previous file with comments | « chrome/renderer/web_apps.cc ('k') | content/browser/accessibility/browser_accessibility_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/browser_accessibility.cc
diff --git a/content/browser/accessibility/browser_accessibility.cc b/content/browser/accessibility/browser_accessibility.cc
index 90d8a696194302a59ea6684f4b9b61c9cae0d01a..b50a47662f01504097641479285641aa058f995c 100644
--- a/content/browser/accessibility/browser_accessibility.cc
+++ b/content/browser/accessibility/browser_accessibility.cc
@@ -580,16 +580,16 @@ bool BrowserAccessibility::GetAriaTristate(
base::string16 value;
if (!GetHtmlAttribute(html_attr, &value) ||
value.empty() ||
- EqualsASCII(value, "undefined")) {
+ base::EqualsASCII(value, "undefined")) {
return false; // Not set (and *is_defined is also false)
}
*is_defined = true;
- if (EqualsASCII(value, "true"))
+ if (base::EqualsASCII(value, "true"))
return true;
- if (EqualsASCII(value, "mixed"))
+ if (base::EqualsASCII(value, "mixed"))
*is_mixed = true;
return false; // Not set
« no previous file with comments | « chrome/renderer/web_apps.cc ('k') | content/browser/accessibility/browser_accessibility_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698