Index: content/browser/indexed_db/indexed_db_factory.h |
diff --git a/content/browser/indexed_db/indexed_db_factory.h b/content/browser/indexed_db/indexed_db_factory.h |
index d4317c7ea9586fc62f1d5cd316e892b367c7cf6d..935ba56c550286ba1038093feb992d11b558b84d 100644 |
--- a/content/browser/indexed_db/indexed_db_factory.h |
+++ b/content/browser/indexed_db/indexed_db_factory.h |
@@ -34,6 +34,7 @@ class CONTENT_EXPORT IndexedDBFactory |
public: |
typedef std::multimap<GURL, IndexedDBDatabase*> OriginDBMap; |
typedef OriginDBMap::const_iterator OriginDBMapIterator; |
+ typedef std::pair<OriginDBMapIterator, OriginDBMapIterator> OriginDBs; |
virtual void ReleaseDatabase(const IndexedDBDatabase::Identifier& identifier, |
bool forcedClose) = 0; |
@@ -59,8 +60,7 @@ class CONTENT_EXPORT IndexedDBFactory |
const GURL& origin_url, |
const IndexedDBDatabaseError& error) = 0; |
- virtual std::pair<OriginDBMapIterator, OriginDBMapIterator> |
- GetOpenDatabasesForOrigin(const GURL& origin_url) const = 0; |
+ virtual OriginDBs GetOpenDatabasesForOrigin(const GURL& origin_url) const = 0; |
virtual void ForceClose(const GURL& origin_url) = 0; |