summaryrefslogtreecommitdiffstats
path: root/content/public/test/async_file_test_helper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/test/async_file_test_helper.cc')
-rw-r--r--content/public/test/async_file_test_helper.cc2
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;