| 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 16c77ed192f73ef8d145d8c2731d2337b793494a..1302054d4068ee8163323501e1159caf7282b46a 100644
|
| --- a/net/disk_cache/simple/simple_backend_impl.cc
|
| +++ b/net/disk_cache/simple/simple_backend_impl.cc
|
| @@ -94,7 +94,7 @@ void DeleteBackendImpl(disk_cache::Backend** backend,
|
| // 2. The Simple Backend has pickled file format for the index making it hacky
|
| // to have the magic in the right place.
|
| bool FileStructureConsistent(const base::FilePath& path) {
|
| - if (!file_util::PathExists(path) && !file_util::CreateDirectory(path)) {
|
| + if (!base::PathExists(path) && !file_util::CreateDirectory(path)) {
|
| LOG(ERROR) << "Failed to create directory: " << path.LossyDisplayName();
|
| return false;
|
| }
|
|
|