| Index: net/tools/dump_cache/cache_dumper.cc
|
| diff --git a/net/tools/dump_cache/cache_dumper.cc b/net/tools/dump_cache/cache_dumper.cc
|
| index e6bac0aeda76dfe267e4670cd0fba52d10bb143f..ad9a79c0f84fe3f01125466ac434833cd5bf8b0e 100644
|
| --- a/net/tools/dump_cache/cache_dumper.cc
|
| +++ b/net/tools/dump_cache/cache_dumper.cc
|
| @@ -65,13 +65,13 @@ bool SafeCreateDirectory(const base::FilePath& path) {
|
| // Now create the full path
|
| return CreateDirectoryW(path.value().c_str(), NULL) == TRUE;
|
| #else
|
| - return file_util::CreateDirectory(path);
|
| + return base::CreateDirectory(path);
|
| #endif
|
| }
|
|
|
| DiskDumper::DiskDumper(const base::FilePath& path)
|
| : path_(path), entry_(NULL) {
|
| - file_util::CreateDirectory(path);
|
| + base::CreateDirectory(path);
|
| }
|
|
|
| int DiskDumper::CreateEntry(const std::string& key,
|
|
|