| Index: base/files/file_path.cc
|
| diff --git a/base/files/file_path.cc b/base/files/file_path.cc
|
| index 3ea5856a0d58c35c0abacb4b10fc87fd92379512..d47becbacca30815ca1284a3aad2a2d229be16cd 100644
|
| --- a/base/files/file_path.cc
|
| +++ b/base/files/file_path.cc
|
| @@ -633,8 +633,8 @@ string16 FilePath::LossyDisplayName() const {
|
|
|
| std::string FilePath::MaybeAsASCII() const {
|
| if (IsStringASCII(path_))
|
| - return WideToASCII(path_);
|
| - return "";
|
| + return UTF16ToASCII(path_);
|
| + return std::string();
|
| }
|
|
|
| std::string FilePath::AsUTF8Unsafe() const {
|
|
|