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

Unified Diff: crypto/nss_util.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: crypto/nss_util.cc
diff --git a/crypto/nss_util.cc b/crypto/nss_util.cc
index a74c8b65a4bdd7c1a99b8d20f8549d2257f5af14..82556b44128093b5eeebb68d498f94a6de6309db 100644
--- a/crypto/nss_util.cc
+++ b/crypto/nss_util.cc
@@ -85,7 +85,7 @@ base::FilePath GetDefaultConfigDirectory() {
return dir;
}
dir = dir.AppendASCII(".pki").AppendASCII("nssdb");
- if (!file_util::CreateDirectory(dir)) {
+ if (!base::CreateDirectory(dir)) {
LOG(ERROR) << "Failed to create " << dir.value() << " directory.";
dir.clear();
}
« no previous file with comments | « content/shell/browser/shell_download_manager_delegate.cc ('k') | extensions/common/extension_resource_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698