| Index: pdf/document_loader.cc
|
| diff --git a/pdf/document_loader.cc b/pdf/document_loader.cc
|
| index a156cbeec369fd2de22860ab65be4feb0f00a41b..868a8c4ce4f1367f6a011101efe453a8813c6557 100644
|
| --- a/pdf/document_loader.cc
|
| +++ b/pdf/document_loader.cc
|
| @@ -53,7 +53,7 @@ std::string GetMultiPartBoundary(const std::string& headers) {
|
| net::HttpUtil::HeadersIterator it(headers.begin(), headers.end(), "\n");
|
| while (it.GetNext()) {
|
| if (base::LowerCaseEqualsASCII(it.name(), "content-type")) {
|
| - std::string type = base::StringToLowerASCII(it.values());
|
| + std::string type = base::ToLowerASCII(it.values());
|
| if (base::StartsWith(type, "multipart/", base::CompareCase::SENSITIVE)) {
|
| const char* boundary = strstr(type.c_str(), "boundary=");
|
| if (!boundary) {
|
|
|