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

Unified Diff: chrome/browser/component_updater/test/test_installer.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/browser/component_updater/test/test_installer.cc
diff --git a/chrome/browser/component_updater/test/test_installer.cc b/chrome/browser/component_updater/test/test_installer.cc
index f379b6f7d7b78795f42497a1bfdf07bf505a88a6..62ae49462f19a6d1a406af3401092dbb153b743b 100644
--- a/chrome/browser/component_updater/test/test_installer.cc
+++ b/chrome/browser/component_updater/test/test_installer.cc
@@ -63,7 +63,7 @@ bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest,
base::FilePath path;
path = install_directory_.AppendASCII(version.GetString());
- file_util::CreateDirectory(path.DirName());
+ base::CreateDirectory(path.DirName());
if (!base::Move(unpack_path, path))
return false;
current_version_ = version;
« no previous file with comments | « chrome/browser/component_updater/swiftshader_component_installer.cc ('k') | chrome/browser/download/download_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698