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

Unified Diff: chrome/browser/ui/startup/startup_browser_creator.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/ui/startup/startup_browser_creator.cc
diff --git a/chrome/browser/ui/startup/startup_browser_creator.cc b/chrome/browser/ui/startup/startup_browser_creator.cc
index 703e1363f16f788aaa9a3912b7eb38a34c7a4a94..f550eecd97bd729875512784c083bbfd5e02d333 100644
--- a/chrome/browser/ui/startup/startup_browser_creator.cc
+++ b/chrome/browser/ui/startup/startup_browser_creator.cc
@@ -240,7 +240,7 @@ void DumpBrowserHistograms(const base::FilePath& output_file) {
base::ThreadRestrictions::AssertIOAllowed();
std::string output_string(base::StatisticsRecorder::ToJSON(std::string()));
- file_util::WriteFile(output_file, output_string.data(),
+ base::WriteFile(output_file, output_string.data(),
static_cast<int>(output_string.size()));
viettrungluu 2014/02/28 21:47:24 "
}

Powered by Google App Engine
This is Rietveld 408576698