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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObserver.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/indexeddb/IDBObserver.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h
index 16f38a2743d4e68fa79548aefa0dd05e17e557bb..538995bc8b907504792f182bd8b46a0514bd1308 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h
@@ -15,19 +15,19 @@ namespace blink {
class IDBObserverCallback;
class IDBObserverInit;
-class IDBObserver final : public GarbageCollectedFinalized<IDBObserver>, public ScriptWrappable {
+class IDBObserver final : public GarbageCollected<IDBObserver>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static IDBObserver* create(IDBObserverCallback&, const IDBObserverInit&);
- ~IDBObserver();
+
// API methods
void observe(IDBDatabase*, IDBTransaction*, ExceptionState&);
DECLARE_TRACE();
private:
- explicit IDBObserver(IDBObserverCallback&, const IDBObserverInit&);
+ IDBObserver(IDBObserverCallback&, const IDBObserverInit&);
Member<IDBObserverCallback> m_callback;
bool m_transaction;
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698