Index: tools/imagediff/image_diff.cc |
diff --git a/tools/imagediff/image_diff.cc b/tools/imagediff/image_diff.cc |
index 936bf5d17f41fcdad8eef3328a2c6df50e8f452b..6a9ebb9f9380105b7b790bca10192c640128b59a 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(base::ASCIIToWide(str)); |
+ return base::FilePath(base::ASCIIToUTF16(str)); |
#else |
return base::FilePath(str); |
#endif |