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

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

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.h
diff --git a/Source/modules/indexeddb/IDBDatabase.h b/Source/modules/indexeddb/IDBDatabase.h
index 5d268d9eefc57662ea876be730b850bc76b63de8..b6d6e1075cdb7de2f6c647b2dd20ae46728b8bbf 100644
--- a/Source/modules/indexeddb/IDBDatabase.h
+++ b/Source/modules/indexeddb/IDBDatabase.h
@@ -56,12 +56,12 @@ class IDBDatabase FINAL
, public ScriptWrappable
, public EventTargetWithInlineData
, public ActiveDOMObject {
- DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<IDBDatabase>);
-
+ REFCOUNTED_EVENT_TARGET(IDBDatabase);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBDatabase);
public:
static PassRefPtrWillBeRawPtr<IDBDatabase> create(ExecutionContext*, PassOwnPtr<blink::WebIDBDatabase>, PassRefPtrWillBeRawPtr<IDBDatabaseCallbacks>);
virtual ~IDBDatabase();
- void trace(Visitor*);
+ virtual void trace(Visitor*) OVERRIDE;
void setMetadata(const IDBDatabaseMetadata& metadata) { m_metadata = metadata; }
void indexCreated(int64_t objectStoreId, const IDBIndexMetadata&);

Powered by Google App Engine
This is Rietveld 408576698