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

Unified Diff: net/disk_cache/v3/backend_worker.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: net/disk_cache/v3/backend_worker.cc
diff --git a/net/disk_cache/v3/backend_worker.cc b/net/disk_cache/v3/backend_worker.cc
index cbccfddb5c6cd8cd6ae634712ad1929a29e77d2e..be12a96eebedbd19b32fe545eba807a1b26044b4 100644
--- a/net/disk_cache/v3/backend_worker.cc
+++ b/net/disk_cache/v3/backend_worker.cc
@@ -331,7 +331,7 @@ bool BackendImpl::CreateBackingStore(disk_cache::File* file) {
}
bool BackendImpl::InitBackingStore(bool* file_created) {
- if (!file_util::CreateDirectory(path_))
+ if (!base::CreateDirectory(path_))
return false;
base::FilePath index_name = path_.AppendASCII(kIndexName);
« no previous file with comments | « net/disk_cache/simple/simple_index_file_unittest.cc ('k') | net/proxy/proxy_config_service_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698