Index: net/disk_cache/simple/simple_backend_impl.cc |
diff --git a/net/disk_cache/simple/simple_backend_impl.cc b/net/disk_cache/simple/simple_backend_impl.cc |
index 1165da63f9215bb6f27347c7837867336c589bc8..7260857e0f12fbb5b5af82e4c89d79ba64c05188 100644 |
--- a/net/disk_cache/simple/simple_backend_impl.cc |
+++ b/net/disk_cache/simple/simple_backend_impl.cc |
@@ -44,7 +44,7 @@ using base::SequencedWorkerPool; |
using base::SingleThreadTaskRunner; |
using base::Time; |
using base::DirectoryExists; |
-using file_util::CreateDirectory; |
+using base::CreateDirectory; |
namespace disk_cache { |
@@ -124,7 +124,7 @@ void MaybeHistogramFdLimit(net::CacheType cache_type) { |
// backend type and version. If the directory contains no cache, occupies it |
// with the fresh structure. |
bool FileStructureConsistent(const base::FilePath& path) { |
- if (!base::PathExists(path) && !file_util::CreateDirectory(path)) { |
+ if (!base::PathExists(path) && !base::CreateDirectory(path)) { |
LOG(ERROR) << "Failed to create directory: " << path.LossyDisplayName(); |
return false; |
} |