Index: ui/accessibility/ax_node_data.cc |
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc |
index 8cdc67be5c4199ab0dbf5f79cb98f91bc5a2c51b..d31aa6c91311acfbb577423823745230396c7c9d 100644 |
--- a/ui/accessibility/ax_node_data.cc |
+++ b/ui/accessibility/ax_node_data.cc |
@@ -201,7 +201,7 @@ bool AXNodeData::GetHtmlAttribute( |
const char* html_attr, std::string* value) const { |
for (size_t i = 0; i < html_attributes.size(); ++i) { |
const std::string& attr = html_attributes[i].first; |
- if (LowerCaseEqualsASCII(attr, html_attr)) { |
+ if (base::LowerCaseEqualsASCII(attr, html_attr)) { |
*value = html_attributes[i].second; |
return true; |
} |