Index: Source/modules/indexeddb/IDBFactory.cpp |
diff --git a/Source/modules/indexeddb/IDBFactory.cpp b/Source/modules/indexeddb/IDBFactory.cpp |
index 6a95c07106f05b0a99abce3e88056ccc844706e2..71d1a32c6fd7f7a1bb1e7686baec41e55c85f022 100644 |
--- a/Source/modules/indexeddb/IDBFactory.cpp |
+++ b/Source/modules/indexeddb/IDBFactory.cpp |
@@ -35,10 +35,10 @@ |
#include "core/dom/ExceptionCode.h" |
#include "modules/indexeddb/IDBDatabase.h" |
#include "modules/indexeddb/IDBDatabaseCallbacks.h" |
-#include "modules/indexeddb/IDBFactoryBackendInterface.h" |
#include "modules/indexeddb/IDBHistograms.h" |
#include "modules/indexeddb/IDBKey.h" |
#include "modules/indexeddb/IDBTracing.h" |
+#include "modules/indexeddb/IndexedDBClient.h" |
#include "modules/indexeddb/WebIDBCallbacksImpl.h" |
#include "modules/indexeddb/WebIDBDatabaseCallbacksImpl.h" |
#include "platform/weborigin/DatabaseIdentifier.h" |
@@ -50,7 +50,7 @@ namespace WebCore { |
static const char permissionDeniedErrorMessage[] = "The user denied permission to access the database."; |
-IDBFactory::IDBFactory(IDBFactoryBackendInterface* permissionClient) |
+IDBFactory::IDBFactory(IndexedDBClient* permissionClient) |
: m_permissionClient(permissionClient) |
{ |
// We pass a reference to this object before it can be adopted. |