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 |