Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(908)

Unified Diff: content/browser/indexed_db/indexed_db_context_impl.cc

Issue 783393002: IDB: Remove unused variable IndexedDBInfo::path_ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cookie_details_unittest.mm Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « chrome/browser/ui/cocoa/content_settings/cookie_details_unittest.mm ('k') | content/public/browser/indexed_db_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698