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 |