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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h

Issue 2098243002: Remove unnecessary finalization of IDBObserver classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h
index 8579251dd4f130d3f118c0c288f36df237c020ab..c93d66d7d5b3d32f7cc40acf222f9e484800ad0e 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h
@@ -16,12 +16,11 @@ namespace blink {
class ScriptState;
class IDBObserverChangesRecord;
-class IDBObserverChanges final : public GarbageCollectedFinalized<IDBObserverChanges>, public ScriptWrappable {
+class IDBObserverChanges final : public GarbageCollected<IDBObserverChanges>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static IDBObserverChanges* create(IDBDatabase*, IDBTransaction*, IDBAny* records);
- ~IDBObserverChanges();
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698