Index: chrome/browser/safe_browsing/download_feedback_service_unittest.cc |
diff --git a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc |
index 808c7981dfa27f5b26b2726e01ee7e84a60f8528..e1520bd8767970f76df6ba8352be6981797eca83 100644 |
--- a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc |
+++ b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc |
@@ -150,7 +150,7 @@ class DownloadFeedbackServiceTest : public testing::Test { |
base::FilePath upload_file_path( |
temp_dir_.path().AppendASCII("test file " + base::IntToString(n))); |
const std::string upload_file_data = "data"; |
- int wrote = file_util::WriteFile( |
+ int wrote = base::WriteFile( |
upload_file_path, upload_file_data.data(), upload_file_data.size()); |
EXPECT_EQ(static_cast<int>(upload_file_data.size()), wrote); |
return upload_file_path; |