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

Unified Diff: Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp

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/IDBDatabaseCallbacksImpl.h ('k') | Source/modules/indexeddb/IDBFactory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp
diff --git a/Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp b/Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp
index 008b2742d7bb450cc3a779700961de8d7ab5bca7..15b63164dfd220f2098530b6f317691ca86ba2ff 100644
--- a/Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp
+++ b/Source/modules/indexeddb/IDBDatabaseCallbacksImpl.cpp
@@ -30,9 +30,11 @@
namespace WebCore {
-PassRefPtr<IDBDatabaseCallbacksImpl> IDBDatabaseCallbacksImpl::create()
+DEFINE_GC_INFO(IDBDatabaseCallbacks);
+
+IDBDatabaseCallbacksImpl* IDBDatabaseCallbacksImpl::create()
{
- return adoptRef(new IDBDatabaseCallbacksImpl());
+ return new IDBDatabaseCallbacksImpl();
}
IDBDatabaseCallbacksImpl::IDBDatabaseCallbacksImpl()
@@ -75,4 +77,8 @@ void IDBDatabaseCallbacksImpl::onComplete(int64_t transactionId)
m_database->onComplete(transactionId);
}
+void IDBDatabaseCallbacksImpl::trace(Visitor*)
+{
+}
+
} // namespace WebCore
« no previous file with comments | « Source/modules/indexeddb/IDBDatabaseCallbacksImpl.h ('k') | Source/modules/indexeddb/IDBFactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698