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 5c53148..4ad816d 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) { - base::Delete(path, false); + base::DeleteFile(path, false); } } // namespace |