| 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 14d8e4de06e55f71a3d2ac1e736d82eb4db85141..c2bd0afa62cf334ca226bd1aef8f8a289b5a7408 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/browser/indexed_db/indexed_db_context_impl.h"
|
|
|
| #include <algorithm>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| @@ -197,7 +198,6 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
|
| for (IndexedDBFactory::OriginDBMapIterator it = range.first;
|
| it != range.second;
|
| ++it) {
|
| -
|
| const IndexedDBDatabase* db = it->second;
|
| scoped_ptr<base::DictionaryValue> db_info(new base::DictionaryValue());
|
|
|
| @@ -217,7 +217,6 @@ base::ListValue* IndexedDBContextImpl::GetAllOriginsDetails() {
|
| transactions.begin();
|
| trans_it != transactions.end();
|
| ++trans_it) {
|
| -
|
| const IndexedDBTransaction* transaction = *trans_it;
|
| scoped_ptr<base::DictionaryValue> transaction_info(
|
| new base::DictionaryValue());
|
|
|