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

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

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.h
diff --git a/content/public/browser/indexed_db_info.h b/content/public/browser/indexed_db_info.h
index 9a5d6293824c074554cc89c5698383ae676300b2..4e99cf3b6db5f529a795fe017bc1a1262d3298f0 100644
--- a/content/public/browser/indexed_db_info.h
+++ b/content/public/browser/indexed_db_info.h
@@ -5,6 +5,7 @@
#ifndef CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_
#define CONTENT_PUBLIC_BROWSER_INDEXED_DB_INFO_H_
+#include "base/files/file_path.h"
#include "base/time.h"
#include "googleurl/src/gurl.h"
@@ -14,11 +15,13 @@ class IndexedDBInfo {
public:
IndexedDBInfo(const GURL& origin,
int64 size,
- const base::Time& last_modified);
+ const base::Time& last_modified,
+ const base::FilePath& path);
GURL origin;
int64 size;
base::Time last_modified;
+ base::FilePath path;
jsbell 2013/04/12 21:25:59 Nit: path_ (and what about the others? or am I mis
michaeln 2013/04/12 23:00:31 maybe just claim this is a struct instead of a cla
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698