| Index: base/file_util.cc
|
| diff --git a/base/file_util.cc b/base/file_util.cc
|
| index 5644c8781c3450c9b93687fea5fb06e2b010539b..ade8db1272fdfae1855f1d44c876168f3bf5dddb 100644
|
| --- a/base/file_util.cc
|
| +++ b/base/file_util.cc
|
| @@ -298,7 +298,7 @@ bool CloseFile(FILE* file) {
|
| // Deprecated functions ----------------------------------------------------
|
|
|
| bool AbsolutePath(std::wstring* path_str) {
|
| - FilePath path(*path_str);
|
| + FilePath path(FilePath::FromWStringHack(*path_str));
|
| if (!AbsolutePath(&path))
|
| return false;
|
| *path_str = path.ToWStringHack();
|
|
|