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

Unified Diff: content/renderer/npapi/webplugin_impl.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 | « content/renderer/manifest/manifest_parser_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « content/renderer/manifest/manifest_parser_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698