| 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 39b3a07a70ab7d8aed3cb69d7dc0ff9fc12de55d..225260f69254e90da4596c6df31a07319fecdddd 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -142,12 +142,10 @@ std::vector<IndexedDBInfo> IndexedDBContextImpl::GetAllOriginsInfo() {
|
| std::vector<GURL> origins = GetAllOrigins();
|
| std::vector<IndexedDBInfo> result;
|
| for (const auto& origin_url : origins) {
|
| - base::FilePath idb_directory = GetLevelDBPath(origin_url);
|
| size_t connection_count = GetConnectionCount(origin_url);
|
| result.push_back(IndexedDBInfo(origin_url,
|
| GetOriginDiskUsage(origin_url),
|
| GetOriginLastModified(origin_url),
|
| - idb_directory,
|
| connection_count));
|
| }
|
| return result;
|
|
|