Index: pdf/document_loader.cc |
diff --git a/pdf/document_loader.cc b/pdf/document_loader.cc |
index ba5a3afd0baaf9c6b258845e812d2003941996cf..6b871d60850964f015d3c4ef5d2d0f0c1e3fbf58 100644 |
--- a/pdf/document_loader.cc |
+++ b/pdf/document_loader.cc |
@@ -357,7 +357,7 @@ std::string DocumentLoader::GetMultiPartBoundary(const std::string& headers) { |
net::HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\n"); |
while (it.GetNext()) { |
if (LowerCaseEqualsASCII(it.name(), "content-type")) { |
- std::string type = StringToLowerASCII(it.values()); |
+ std::string type = base::StringToLowerASCII(it.values()); |
if (StartsWithASCII(type, "multipart/", true)) { |
const char* boundary = strstr(type.c_str(), "boundary="); |
if (!boundary) { |