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

Unified Diff: content/public/browser/indexed_db_info.cc

Issue 14156003: Support multiple storage partitions in chrome://indexeddb-internals/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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/public/browser/indexed_db_info.cc
diff --git a/content/public/browser/indexed_db_info.cc b/content/public/browser/indexed_db_info.cc
index d87d52c286a203581d0724a4ee9d84a178b39619..80b23e2c317db70d72611feda37352fd3b9fdf34 100644
--- a/content/public/browser/indexed_db_info.cc
+++ b/content/public/browser/indexed_db_info.cc
@@ -9,9 +9,11 @@ namespace content {
IndexedDBInfo::IndexedDBInfo(
const GURL& origin,
int64 size,
- const base::Time& last_modified)
+ const base::Time& last_modified,
+ const base::FilePath& path)
: origin(origin),
size(size),
- last_modified(last_modified) {}
+ last_modified(last_modified),
+ path(path) {}
} // namespace content
« content/public/browser/indexed_db_info.h ('K') | « content/public/browser/indexed_db_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698