Index: chrome/browser/chromeos/boot_times_loader.cc |
diff --git a/chrome/browser/chromeos/boot_times_loader.cc b/chrome/browser/chromeos/boot_times_loader.cc |
index f7ee8619292b0ef080c4975675a51af4cb1be756..451c6a026ef0efc9544b1c2a6de0b02f860d0f3b 100644 |
--- a/chrome/browser/chromeos/boot_times_loader.cc |
+++ b/chrome/browser/chromeos/boot_times_loader.cc |
@@ -129,12 +129,12 @@ BootTimesLoader* BootTimesLoader::Get() { |
static int AppendFile(const base::FilePath& file_path, |
const char* data, |
int size) { |
- FILE* file = file_util::OpenFile(file_path, "a"); |
+ FILE* file = base::OpenFile(file_path, "a"); |
if (!file) { |
return -1; |
} |
const int num_bytes_written = fwrite(data, 1, size, file); |
- file_util::CloseFile(file); |
+ base::CloseFile(file); |
return num_bytes_written; |
} |