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

Unified Diff: chrome/installer/util/create_dir_work_item.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/installer/util/create_dir_work_item.cc
diff --git a/chrome/installer/util/create_dir_work_item.cc b/chrome/installer/util/create_dir_work_item.cc
index 2e1ffa3c2dfaa6db0e0fc35acd956c012c033607..1eff7bf119a402564914613387df5c2aacc6ef50 100644
--- a/chrome/installer/util/create_dir_work_item.cc
+++ b/chrome/installer/util/create_dir_work_item.cc
@@ -36,7 +36,7 @@ bool CreateDirWorkItem::Do() {
return true;
VLOG(1) << "top directory that needs to be created: " << top_path_.value();
- bool result = file_util::CreateDirectory(path_);
+ bool result = base::CreateDirectory(path_);
VLOG(1) << "directory creation result: " << result;
rollback_needed_ = true;
« no previous file with comments | « chrome/installer/util/copy_tree_work_item_unittest.cc ('k') | chrome/installer/util/create_dir_work_item_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698