Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: chrome/browser/chromeos/boot_times_loader.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 451c6a026ef0efc9544b1c2a6de0b02f860d0f3b..6d3c820fdd1f42b6cef438bba2baf7fd8bfe0dcc 100644
--- a/chrome/browser/chromeos/boot_times_loader.cc
+++ b/chrome/browser/chromeos/boot_times_loader.cc
@@ -209,8 +209,7 @@ void BootTimesLoader::WriteTimes(
}
output += '\n';
- file_util::WriteFile(
- log_path.Append(base_name), output.data(), output.size());
+ base::WriteFile(log_path.Append(base_name), output.data(), output.size());
}
void BootTimesLoader::LoginDone() {

Powered by Google App Engine
This is Rietveld 408576698