Index: net/disk_cache/simple/simple_index_file.cc |
diff --git a/net/disk_cache/simple/simple_index_file.cc b/net/disk_cache/simple/simple_index_file.cc |
index 9e28a1229e45e2fea6b178f57c11820849502faa..0b375f4a6cc5ed5f864c94354623e552aa8afce2 100644 |
--- a/net/disk_cache/simple/simple_index_file.cc |
+++ b/net/disk_cache/simple/simple_index_file.cc |
@@ -66,7 +66,7 @@ void UmaRecordIndexInitMethod(IndexInitMethod method, |
} |
bool WritePickleFile(Pickle* pickle, const base::FilePath& file_name) { |
- int bytes_written = file_util::WriteFile( |
+ int bytes_written = base::WriteFile( |
file_name, static_cast<const char*>(pickle->data()), pickle->size()); |
if (bytes_written != implicit_cast<int>(pickle->size())) { |
base::DeleteFile(file_name, /* recursive = */ false); |