| Index: base/test/test_file_util_posix.cc
|
| diff --git a/base/test/test_file_util_posix.cc b/base/test/test_file_util_posix.cc
|
| index 3e1b9eb277f6a0dd937b0ddee100081e1d850192..1f9efd69f35d6bf9a771c2c51da3eda9689135d9 100644
|
| --- a/base/test/test_file_util_posix.cc
|
| +++ b/base/test/test_file_util_posix.cc
|
| @@ -89,10 +89,10 @@ bool EvictFileFromSystemCache(const base::FilePath& file) {
|
| #endif
|
|
|
| std::wstring FilePathAsWString(const base::FilePath& path) {
|
| - return UTF8ToWide(path.value());
|
| + return base::UTF8ToWide(path.value());
|
| }
|
| base::FilePath WStringAsFilePath(const std::wstring& path) {
|
| - return base::FilePath(WideToUTF8(path));
|
| + return base::FilePath(base::WideToUTF8(path));
|
| }
|
|
|
| bool MakeFileUnreadable(const base::FilePath& path) {
|
|
|