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

Unified Diff: chrome/tools/profile_reset/jtl_compiler_frontend.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
« no previous file with comments | « chrome/tools/convert_dict/convert_dict_unittest.cc ('k') | chrome/tools/safe_browsing/sb_sigutil.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/profile_reset/jtl_compiler_frontend.cc
diff --git a/chrome/tools/profile_reset/jtl_compiler_frontend.cc b/chrome/tools/profile_reset/jtl_compiler_frontend.cc
index abc194464c5047997ff8956db0b4cf2eb39d70b3..b17220547ec4c8d7f6ed9426e368a727e4a9f36c 100644
--- a/chrome/tools/profile_reset/jtl_compiler_frontend.cc
+++ b/chrome/tools/profile_reset/jtl_compiler_frontend.cc
@@ -100,7 +100,7 @@ int main(int argc, char* argv[]) {
base::FilePath bytecode_path =
MakeAbsoluteFilePath(cmd_line->GetSwitchValuePath(kOutputPath));
int bytes_written =
- file_util::WriteFile(cmd_line->GetSwitchValuePath(kOutputPath),
+ base::WriteFile(cmd_line->GetSwitchValuePath(kOutputPath),
bytecode.data(),
static_cast<int>(bytecode.size()));
if (bytes_written != static_cast<int>(bytecode.size())) {
« no previous file with comments | « chrome/tools/convert_dict/convert_dict_unittest.cc ('k') | chrome/tools/safe_browsing/sb_sigutil.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698