| Index: content/browser/indexed_db/indexed_db_context_impl.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| index 917eac791415effa3a8cbb5a93bdf0dd5f6004e4..91c0c829cd7b4309e020b5fd010956e70bba7cfb 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -81,7 +81,7 @@ void ClearSessionOnlyOrigins(
|
| continue;
|
| if (special_storage_policy->IsStorageProtected(*iter))
|
| continue;
|
| - base::Delete(*file_path_iter, true);
|
| + base::DeleteFile(*file_path_iter, true);
|
| }
|
| }
|
|
|
| @@ -173,7 +173,7 @@ void IndexedDBContextImpl::DeleteForOrigin(const GURL& origin_url) {
|
| base::FilePath idb_directory = GetFilePath(origin_url);
|
| EnsureDiskUsageCacheInitialized(origin_url);
|
| const bool recursive = true;
|
| - bool deleted = base::Delete(idb_directory, recursive);
|
| + bool deleted = base::DeleteFile(idb_directory, recursive);
|
|
|
| QueryDiskAndUpdateQuotaUsage(origin_url);
|
| if (deleted) {
|
|
|