Index: content/renderer/npapi/webplugin_impl.cc |
diff --git a/content/renderer/npapi/webplugin_impl.cc b/content/renderer/npapi/webplugin_impl.cc |
index 046d33caa7e8427fe2c5289797dcdb8f6cf468c0..b6e4db1dfc4d45785e02dee316153012ad94787c 100644 |
--- a/content/renderer/npapi/webplugin_impl.cc |
+++ b/content/renderer/npapi/webplugin_impl.cc |
@@ -208,7 +208,7 @@ void GetResponseInfo(const WebURLResponse& response, |
WebString content_encoding = |
response.httpHeaderField(WebString::fromUTF8("Content-Encoding")); |
if (!content_encoding.isNull() && |
- !EqualsASCII(content_encoding, "identity")) { |
+ !base::EqualsASCII(content_encoding, "identity")) { |
// Don't send the compressed content length to the plugin, which only |
// cares about the decoded length. |
response_info->expected_length = 0; |