Fix building on Windows

This commit is contained in:
Cheng Zhao 2015-09-03 20:07:29 +08:00
parent c81de98d22
commit 53b9d61831
5 changed files with 5 additions and 6 deletions

View file

@ -172,7 +172,7 @@ bool URLRequestAsarJob::IsRedirectResponse(GURL* location,
#if defined(OS_WIN)
// Follow a Windows shortcut.
// We just resolve .lnk file, ignore others.
if (!LowerCaseEqualsASCII(file_path_.Extension(), ".lnk"))
if (!base::LowerCaseEqualsASCII(file_path_.Extension(), ".lnk"))
return false;
base::FilePath new_path = file_path_;