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

Unified Diff: Source/modules/indexeddb/IDBTransaction.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/IDBTransaction.cpp
diff --git a/Source/modules/indexeddb/IDBTransaction.cpp b/Source/modules/indexeddb/IDBTransaction.cpp
index a008ea2a734caee76cc7c191b720bc6772afb461..391e6b455a2209fbe43d064467c260f6cb965c44 100644
--- a/Source/modules/indexeddb/IDBTransaction.cpp
+++ b/Source/modules/indexeddb/IDBTransaction.cpp
@@ -118,6 +118,7 @@ void IDBTransaction::trace(Visitor* visitor)
visitor->trace(m_objectStoreMap);
visitor->trace(m_deletedObjectStores);
visitor->trace(m_objectStoreCleanupMap);
+ EventTargetWithInlineData::trace(visitor);
}
const String& IDBTransaction::mode() const

Powered by Google App Engine
This is Rietveld 408576698