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

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: Rename some lingering 'factory' ferences to 'client' 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..756bd2f38e9df7a4f15a25e00d3f312e628981e0 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 {
@@ -65,10 +65,10 @@ IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB(WillBeHeapSupplementable
IDBFactory* WorkerGlobalScopeIndexedDatabase::indexedDB()
{
- if (!m_factoryBackend)
- m_factoryBackend = IDBFactoryBackendInterface::create();
+ if (!m_client)
+ m_client = IndexedDBClient::create();
if (!m_idbFactory)
- m_idbFactory = IDBFactory::create(m_factoryBackend.get());
+ m_idbFactory = IDBFactory::create(m_client.get());
return m_idbFactory.get();
}

Powered by Google App Engine
This is Rietveld 408576698