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

Unified Diff: chrome/browser/browsing_data/browsing_data_indexed_db_helper.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
« no previous file with comments | « no previous file | chrome/browser/browsing_data/mock_browsing_data_indexed_db_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
diff --git a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
index b102046fb5e9effb16475733c8dd43c8ca37c5e4..0777df564dccc46a5ce3f571c9d32285984588b4 100644
--- a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
+++ b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
@@ -147,8 +147,7 @@ void CannedBrowsingDataIndexedDBHelper::StartFetching(
for (std::set<PendingIndexedDBInfo>::const_iterator
pending_info = pending_indexed_db_info_.begin();
pending_info != pending_indexed_db_info_.end(); ++pending_info) {
- IndexedDBInfo info(
- pending_info->origin, 0, base::Time(), base::FilePath(), 0);
+ IndexedDBInfo info(pending_info->origin, 0, base::Time(), 0);
result.push_back(info);
}
« no previous file with comments | « no previous file | chrome/browser/browsing_data/mock_browsing_data_indexed_db_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698