| 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 4a9223f7197ad42f527479ff91c9d6971924476b..2ac2afb4096be9901193976dfbb15e717880c9d1 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"
|
| @@ -172,10 +173,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,
|
|
|