diff options
Diffstat (limited to 'content/public/test/async_file_test_helper.cc')
-rw-r--r-- | content/public/test/async_file_test_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/public/test/async_file_test_helper.cc b/content/public/test/async_file_test_helper.cc index 2da0bf8..03376f9 100644 --- a/content/public/test/async_file_test_helper.cc +++ b/content/public/test/async_file_test_helper.cc @@ -181,7 +181,7 @@ base::File::Error AsyncFileTestHelper::CreateFileWithData( if (!dir.CreateUniqueTempDir()) return base::File::FILE_ERROR_FAILED; base::FilePath local_path = dir.path().AppendASCII("tmp"); - if (buf_size != file_util::WriteFile(local_path, buf, buf_size)) + if (buf_size != base::WriteFile(local_path, buf, buf_size)) return base::File::FILE_ERROR_FAILED; base::File::Error result = base::File::FILE_ERROR_FAILED; base::RunLoop run_loop; |