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

Unified Diff: chrome/browser/performance_monitor/database.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/performance_monitor/database.cc
diff --git a/chrome/browser/performance_monitor/database.cc b/chrome/browser/performance_monitor/database.cc
index 21eca517391c9d6b5d8a9e5ec6e2c554fdec8295..4d34ef28057f5bdcdb6987e3ef77302dabe2a8dc 100644
--- a/chrome/browser/performance_monitor/database.cc
+++ b/chrome/browser/performance_monitor/database.cc
@@ -93,7 +93,7 @@ scoped_ptr<Database> Database::Create(base::FilePath path) {
path = path.AppendASCII(kDbDir);
}
scoped_ptr<Database> database;
- if (!base::DirectoryExists(path) && !file_util::CreateDirectory(path))
+ if (!base::DirectoryExists(path) && !base::CreateDirectory(path))
return database.Pass();
database.reset(new Database(path));

Powered by Google App Engine
This is Rietveld 408576698