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

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

Issue 307433003: Oilpan: Allocate all EventTarget derived types on the manged heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/IDBDatabase.cpp
diff --git a/Source/modules/indexeddb/IDBDatabase.cpp b/Source/modules/indexeddb/IDBDatabase.cpp
index aa9a47946d9061700658149b9892b254b58e0396..310934d904de8452516c31ed95700529aeee81f0 100644
--- a/Source/modules/indexeddb/IDBDatabase.cpp
+++ b/Source/modules/indexeddb/IDBDatabase.cpp
@@ -105,6 +105,7 @@ void IDBDatabase::trace(Visitor* visitor)
visitor->trace(m_transactions);
visitor->trace(m_enqueuedEvents);
visitor->trace(m_databaseCallbacks);
+ EventTargetWithInlineData::trace(visitor);
}
int64_t IDBDatabase::nextTransactionId()

Powered by Google App Engine
This is Rietveld 408576698