| 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 b687171bbc5d028f45954cd4ad76e27bf4f519de..969b697602ecdc7fb89a5aec01aa84790fb537a9 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -82,7 +82,7 @@ void GetAllOriginsAndPaths(const base::FilePath& indexeddb_path,
|
| }
|
|
|
| // This will be called after the IndexedDBContext is destroyed.
|
| -void ClearSessionOnlyOrigins(
|
| +void IndexedDBClearSessionOnlyOrigins(
|
| const base::FilePath& indexeddb_path,
|
| scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy) {
|
| // TODO(jsbell): DCHECK that this is running on an IndexedDB sequence,
|
| @@ -492,7 +492,7 @@ IndexedDBContextImpl::~IndexedDBContextImpl() {
|
| return;
|
|
|
| TaskRunner()->PostTask(FROM_HERE,
|
| - base::BindOnce(&ClearSessionOnlyOrigins, data_path_,
|
| + base::BindOnce(&IndexedDBClearSessionOnlyOrigins, data_path_,
|
| special_storage_policy_));
|
| }
|
|
|
|
|