Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1122)

Unified Diff: Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp

Issue 225023020: IDBFactoryBackend -> IndexedDBClient, remove indexeddb/chromium (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: IndexedDB.cpp -> IndexedDBClient.cpp Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
diff --git a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
index d735b6e4d6b3ad5669245a81811f99602f1cc56f..8488668a1322d84a3397f03ceac0a0935d09ff64 100644
--- a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
+++ b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp
@@ -31,7 +31,7 @@
#include "core/dom/ExecutionContext.h"
#include "modules/indexeddb/IDBFactory.h"
-#include "modules/indexeddb/IDBFactoryBackendInterface.h"
+#include "modules/indexeddb/IndexedDBClient.h"
namespace WebCore {
@@ -66,7 +66,7 @@ IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB(WillBeHeapSupplementable
IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB()
{
if (!m_factoryBackend)
- m_factoryBackend = IDBFactoryBackendInterface::create();
+ m_factoryBackend = IndexedDBClient::create();
if (!m_idbFactory)
m_idbFactory = IDBFactory::create(m_factoryBackend.get());
return m_idbFactory.get();

Powered by Google App Engine
This is Rietveld 408576698