summaryrefslogtreecommitdiffstats
path: root/tools/imagediff/image_diff.cc
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2014-11-06 17:19:24 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-07 01:20:09 +0000
commite5c64d9a2cb63bce791faeed3691db80ecc127b5 (patch)
tree9efe7050f3ee68c28e60b4c77bcfebed7db85c8a /tools/imagediff/image_diff.cc
parent122c806963c35931970ea27e58ebb71e408c351b (diff)
downloadchromium_src-e5c64d9a2cb63bce791faeed3691db80ecc127b5.zip
chromium_src-e5c64d9a2cb63bce791faeed3691db80ecc127b5.tar.gz
chromium_src-e5c64d9a2cb63bce791faeed3691db80ecc127b5.tar.bz2
Cleanup: Replace base::ASCIIToWide with base::ASCIIToUTF16.
BUG=23581 Review URL: https://codereview.chromium.org/689063002 Cr-Commit-Position: refs/heads/master@{#303142}
Diffstat (limited to 'tools/imagediff/image_diff.cc')
-rw-r--r--tools/imagediff/image_diff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/imagediff/image_diff.cc b/tools/imagediff/image_diff.cc
index 936bf5d..6a9ebb9 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