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

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

Issue 78053006: [oilpan] Move IDBDatabase, IDBDatabaseCallbacks, IDBDatabaseBackendInterface and other related clas… (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years 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
« no previous file with comments | « Source/modules/indexeddb/IDBFactoryBackendImpl.cpp ('k') | Source/modules/indexeddb/IDBIndex.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBFactoryBackendInterface.h
diff --git a/Source/modules/indexeddb/IDBFactoryBackendInterface.h b/Source/modules/indexeddb/IDBFactoryBackendInterface.h
index 89769c96e78a6af160e1b6f82f6d3d418bdbc9a7..9bfc8e8ee3b3a7fbcf3e22594657d847175fbcd1 100644
--- a/Source/modules/indexeddb/IDBFactoryBackendInterface.h
+++ b/Source/modules/indexeddb/IDBFactoryBackendInterface.h
@@ -53,9 +53,9 @@ public:
static IDBFactoryBackendInterface* create();
virtual ~IDBFactoryBackendInterface() { }
- virtual void getDatabaseNames(PassRefPtr<IDBCallbacks>, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
- virtual void open(const String& name, int64_t version, int64_t transactionId, PassRefPtr<IDBCallbacks>, PassRefPtr<IDBDatabaseCallbacks>, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
- virtual void deleteDatabase(const String& name, PassRefPtr<IDBCallbacks>, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
+ virtual void getDatabaseNames(IDBCallbacks*, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
+ virtual void open(const String& name, int64_t version, int64_t transactionId, IDBCallbacks*, IDBDatabaseCallbacks*, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
+ virtual void deleteDatabase(const String& name, IDBCallbacks*, const String& databaseIdentifier, ScriptExecutionContext*, const String& dataDir) = 0;
virtual void trace(Visitor*) = 0;
};
« no previous file with comments | « Source/modules/indexeddb/IDBFactoryBackendImpl.cpp ('k') | Source/modules/indexeddb/IDBIndex.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698