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

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: 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
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 d5b2c4d4d7a81ec28b935de21f550017989a0fb9..951c968a8c129cbffb52f8584c6d5d47ab258f84 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 "content/common/content_export.h"
#include "googleurl/src/gurl.h"
@@ -15,11 +16,13 @@ class CONTENT_EXPORT 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;
+ GURL origin_;
+ int64 size_;
+ base::Time last_modified_;
+ base::FilePath path_;
};
} // namespace content
« no previous file with comments | « content/browser/resources/indexed_db/indexeddb_internals.js ('k') | content/public/browser/indexed_db_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698