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

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

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.h
diff --git a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
index b1664c2c7138f90da2d1c25c7b21ce03a862842d..70bc410beb62cc7ce18fb1d0250af525ddf5694f 100644
--- a/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
+++ b/Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h
@@ -32,7 +32,7 @@
namespace WebCore {
class IDBFactory;
-class IDBFactoryBackendInterface;
+class IndexedDBClient;
class ExecutionContext;
class WorkerGlobalScope;
@@ -52,7 +52,7 @@ private:
IDBFactory* indexedDB();
static const char* supplementName();
- RefPtr<IDBFactoryBackendInterface> m_factoryBackend;
+ RefPtr<IndexedDBClient> m_factoryBackend;
RefPtr<IDBFactory> m_idbFactory;
};

Powered by Google App Engine
This is Rietveld 408576698