| Index: content/browser/indexed_db/indexed_db_context_impl.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| index 6c67cd5ee98b443bd03ea31355d9703e401b2668..88c84bcad150b5d20dee1edb6b64671093b55a6c 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/indexed_db/indexed_db_context_impl.h"
|
|
|
| +#include <vector>
|
| +
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/file_util.h"
|
| @@ -129,9 +131,12 @@ std::vector<IndexedDBInfo> IndexedDBContextImpl::GetAllOriginsInfo() {
|
| iter != origins.end(); ++iter) {
|
| const GURL& origin = *iter;
|
|
|
| + string16 origin_id = DatabaseUtil::GetOriginIdentifier(origin);
|
| + base::FilePath idb_directory = GetIndexedDBFilePath(origin_id);
|
| result.push_back(IndexedDBInfo(origin,
|
| GetOriginDiskUsage(origin),
|
| - GetOriginLastModified(origin)));
|
| + GetOriginLastModified(origin),
|
| + idb_directory));
|
| }
|
| return result;
|
| }
|
|
|