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

Unified Diff: Source/modules/indexeddb/DOMWindowIndexedDatabase.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/DOMWindowIndexedDatabase.cpp
diff --git a/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp b/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
index ea45db1db929c1091b6a0851d0582524e3113868..1329a93f3220a6fda266f04c04c2fd622ed17037 100644
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
@@ -89,7 +89,7 @@ IDBFactory* DOMWindowIndexedDatabase::indexedDB()
return 0;
if (!m_idbFactory)
- m_idbFactory = IDBFactory::create(IDBFactoryBackendInterface::create().get());
+ m_idbFactory = IDBFactory::create(IndexedDBClient::create().get());
return m_idbFactory.get();
}

Powered by Google App Engine
This is Rietveld 408576698