| 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 27c9eb27e6b526c22ebab4027746c20f5ee2f9d6..2156d354debd47d0a89602aa99f38249d48524da 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -83,7 +83,7 @@ void ClearSessionOnlyOrigins(
|
| continue;
|
| if (special_storage_policy->IsStorageProtected(*iter))
|
| continue;
|
| - file_util::Delete(*file_path_iter, true);
|
| + base::Delete(*file_path_iter, true);
|
| }
|
| }
|
|
|
| @@ -175,7 +175,7 @@ void IndexedDBContextImpl::DeleteForOrigin(const GURL& origin_url) {
|
| base::FilePath idb_directory = GetFilePath(origin_url);
|
| EnsureDiskUsageCacheInitialized(origin_url);
|
| const bool recursive = true;
|
| - bool deleted = file_util::Delete(idb_directory, recursive);
|
| + bool deleted = base::Delete(idb_directory, recursive);
|
|
|
| QueryDiskAndUpdateQuotaUsage(origin_url);
|
| if (deleted) {
|
|
|