| Index: third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
|
| index 30520505090d0d003f6df8772c11d64c8abbff86..b083c8fb5142be5e48c5b490f7806d47e52ac18c 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
|
| @@ -29,7 +29,6 @@
|
|
|
| #include "core/dom/ExecutionContext.h"
|
| #include "modules/indexeddb/IDBFactory.h"
|
| -#include "modules/indexeddb/IndexedDBClient.h"
|
|
|
| namespace blink {
|
|
|
| @@ -64,7 +63,7 @@ IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB(Supplementable<WorkerGlo
|
| IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB()
|
| {
|
| if (!m_idbFactory)
|
| - m_idbFactory = IDBFactory::create(IndexedDBClient::create());
|
| + m_idbFactory = IDBFactory::create();
|
| return m_idbFactory.get();
|
| }
|
|
|
|
|