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..689dc18394fc5c1f2bb98ca6635260fbda49e2a7 100644 |
--- a/content/browser/indexed_db/indexed_db_context_impl.cc |
+++ b/content/browser/indexed_db/indexed_db_context_impl.cc |
@@ -22,7 +22,7 @@ |
#include "content/browser/indexed_db/indexed_db_connection.h" |
#include "content/browser/indexed_db/indexed_db_database.h" |
#include "content/browser/indexed_db/indexed_db_dispatcher_host.h" |
-#include "content/browser/indexed_db/indexed_db_factory.h" |
+#include "content/browser/indexed_db/indexed_db_factory_impl.h" |
#include "content/browser/indexed_db/indexed_db_quota_client.h" |
#include "content/browser/indexed_db/indexed_db_tracing.h" |
#include "content/browser/indexed_db/indexed_db_transaction.h" |
@@ -122,7 +122,7 @@ IndexedDBFactory* IndexedDBContextImpl::GetIDBFactory() { |
// Prime our cache of origins with existing databases so we can |
// detect when dbs are newly created. |
GetOriginSet(); |
- factory_ = new IndexedDBFactory(this); |
+ factory_ = new IndexedDBFactoryImpl(this); |
} |
return factory_; |
} |