diff options
Diffstat (limited to 'net/http/http_cache.cc')
-rw-r--r-- | net/http/http_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc index db008b8..5c53148 100644 --- a/net/http/http_cache.cc +++ b/net/http/http_cache.cc @@ -45,7 +45,7 @@ namespace { // Adaptor to delete a file on a worker thread. void DeletePath(base::FilePath path) { - file_util::Delete(path, false); + base::Delete(path, false); } } // namespace |