summaryrefslogtreecommitdiffstats
path: root/content/browser/indexed_db/indexed_db_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/indexed_db/indexed_db_factory.cc')
-rw-r--r--content/browser/indexed_db/indexed_db_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/indexed_db/indexed_db_factory.cc b/content/browser/indexed_db/indexed_db_factory.cc
index 1a83332..fb46b8f 100644
--- a/content/browser/indexed_db/indexed_db_factory.cc
+++ b/content/browser/indexed_db/indexed_db_factory.cc
@@ -334,7 +334,7 @@ std::vector<IndexedDBDatabase*> IndexedDBFactory::GetOpenDatabasesForOrigin(
it != database_map_.end();
++it) {
if (it->first.first == origin_url)
- result.push_back(it->second.get());
+ result.push_back(it->second);
}
return result;
}