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

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

Issue 1865213006: Replace setIndexedDBClientCreateFunction madness with Supplements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify per review feedback Created 4 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: 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();
}
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp ('k') | third_party/WebKit/Source/web/IndexedDBClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698