| Index: tools/imagediff/image_diff.cc
|
| diff --git a/tools/imagediff/image_diff.cc b/tools/imagediff/image_diff.cc
|
| index 604f27e88df432bd2c7cab6f93c47a6b8d527997..740a397a24ffa1f895de62c92efd7ec445a8aa98 100644
|
| --- a/tools/imagediff/image_diff.cc
|
| +++ b/tools/imagediff/image_diff.cc
|
| @@ -397,7 +397,7 @@ int DiffImages(const base::FilePath& file1, const base::FilePath& file2,
|
| // paths as non-wide strings anyway.
|
| base::FilePath FilePathFromASCII(const std::string& str) {
|
| #if defined(OS_WIN)
|
| - return base::FilePath(ASCIIToWide(str));
|
| + return base::FilePath(base::ASCIIToWide(str));
|
| #else
|
| return base::FilePath(str);
|
| #endif
|
|
|