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

Unified Diff: chrome/test/perf/generate_profile.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
« no previous file with comments | « chrome/test/chromedriver/chrome_launcher.cc ('k') | chrome/tools/crash_service/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/generate_profile.cc
diff --git a/chrome/test/perf/generate_profile.cc b/chrome/test/perf/generate_profile.cc
index b3fcf66c9ab7dd861a305dea66099cd4c7edfb4b..70debd57bea9396a4bf29fc97b3f6889019010ff 100644
--- a/chrome/test/perf/generate_profile.cc
+++ b/chrome/test/perf/generate_profile.cc
@@ -205,7 +205,7 @@ void InsertURLBatch(Profile* profile,
bool GenerateProfile(GenerateProfileTypes types,
int url_count,
const base::FilePath& dst_dir) {
- if (!file_util::CreateDirectory(dst_dir)) {
+ if (!base::CreateDirectory(dst_dir)) {
PLOG(ERROR) << "Unable to create directory " << dst_dir.value().c_str();
return false;
}
« no previous file with comments | « chrome/test/chromedriver/chrome_launcher.cc ('k') | chrome/tools/crash_service/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698