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

Unified Diff: chrome/tools/crash_service/main.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/perf/generate_profile.cc ('k') | chrome/utility/extensions/unpacker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/crash_service/main.cc
diff --git a/chrome/tools/crash_service/main.cc b/chrome/tools/crash_service/main.cc
index bb684bbd0b8e911bdeb34177cfa7d945d8a4c105..8bf31179810ef706da9aa58ec6758d94b8335915 100644
--- a/chrome/tools/crash_service/main.cc
+++ b/chrome/tools/crash_service/main.cc
@@ -25,7 +25,7 @@ bool GetCrashServiceDirectory(base::FilePath* dir) {
return false;
temp_dir = temp_dir.Append(L"chrome_crashes");
if (!base::PathExists(temp_dir)) {
- if (!file_util::CreateDirectory(temp_dir))
+ if (!base::CreateDirectory(temp_dir))
return false;
}
*dir = temp_dir;
« no previous file with comments | « chrome/test/perf/generate_profile.cc ('k') | chrome/utility/extensions/unpacker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698