Index: content/browser/indexed_db/indexed_db_backing_store_unittest.cc |
diff --git a/content/browser/indexed_db/indexed_db_backing_store_unittest.cc b/content/browser/indexed_db/indexed_db_backing_store_unittest.cc |
index 76d6d5fa526455645dd72cb976d5687ffcfd4e16..f5f4175daa45a7ea5ba0cd21184db833ddf7ed6d 100644 |
--- a/content/browser/indexed_db/indexed_db_backing_store_unittest.cc |
+++ b/content/browser/indexed_db/indexed_db_backing_store_unittest.cc |
@@ -14,6 +14,7 @@ |
#include "base/task_runner.h" |
#include "base/test/test_simple_task_runner.h" |
#include "content/browser/indexed_db/indexed_db_context_impl.h" |
+#include "content/browser/indexed_db/indexed_db_factory_impl.h" |
#include "content/browser/indexed_db/indexed_db_leveldb_coding.h" |
#include "content/browser/indexed_db/indexed_db_value.h" |
#include "content/public/test/mock_special_storage_policy.h" |
@@ -168,10 +169,10 @@ class TestableIndexedDBBackingStore : public IndexedDBBackingStore { |
DISALLOW_COPY_AND_ASSIGN(TestableIndexedDBBackingStore); |
}; |
-class TestIDBFactory : public IndexedDBFactory { |
+class TestIDBFactory : public IndexedDBFactoryImpl { |
public: |
explicit TestIDBFactory(IndexedDBContextImpl* idb_context) |
- : IndexedDBFactory(idb_context) {} |
+ : IndexedDBFactoryImpl(idb_context) {} |
scoped_refptr<TestableIndexedDBBackingStore> OpenBackingStoreForTest( |
const GURL& origin, |