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

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: Fix cocoa unit test 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
« no previous file with comments | « content/public/browser/indexed_db_info.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1fd5e7d2b7aa8008c8976f3ad20b73a1a9fe7d03..6f0116f5e33999e8e76394c57094f4c51b4fbecd 100644
--- a/content/public/browser/indexed_db_info.cc
+++ b/content/public/browser/indexed_db_info.cc
@@ -8,7 +8,9 @@ namespace content {
IndexedDBInfo::IndexedDBInfo(const GURL& origin,
int64 size,
- const base::Time& last_modified)
- : origin(origin), size(size), last_modified(last_modified) {}
+ const base::Time& last_modified,
+ const base::FilePath& path)
+ : origin_(origin), size_(size), last_modified_(last_modified), path_(path) {
+}
} // namespace content
« no previous file with comments | « 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