Index: components/translate/content/renderer/translate_helper.cc |
diff --git a/components/translate/content/renderer/translate_helper.cc b/components/translate/content/renderer/translate_helper.cc |
index a17f351f12394115f6eb272ba96cf28d3bef7dd3..a020f0a56af02b409941a2046bafc2f1861ef111 100644 |
--- a/components/translate/content/renderer/translate_helper.cc |
+++ b/components/translate/content/renderer/translate_helper.cc |
@@ -116,7 +116,7 @@ bool HasNoTranslateMeta(WebDocument* document) { |
attribute = element.getAttribute(content); |
if (attribute.isNull()) |
continue; |
- if (LowerCaseEqualsASCII(attribute, "notranslate")) |
+ if (base::LowerCaseEqualsASCII(attribute, "notranslate")) |
return true; |
} |
return false; |