Index: content/child/npapi/plugin_stream.cc |
diff --git a/content/child/npapi/plugin_stream.cc b/content/child/npapi/plugin_stream.cc |
index 8b8a7f7c5832621fe696fcc969ae740196cca3d9..b069c26f95086889754ef94478c358886e0b8885 100644 |
--- a/content/child/npapi/plugin_stream.cc |
+++ b/content/child/npapi/plugin_stream.cc |
@@ -62,7 +62,7 @@ bool PluginStream::Open(const std::string& mime_type, |
bool seekable_stream = false; |
if (request_is_seekable) { |
- std::string headers_lc = StringToLowerASCII(headers); |
+ std::string headers_lc = base::StringToLowerASCII(headers); |
if (headers_lc.find("accept-ranges: bytes") != std::string::npos) { |
seekable_stream = true; |
} |