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

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

Issue 367113005: Remove destructors from ScriptWrappable objects in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 5 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 | « Source/modules/geolocation/Geoposition.h ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBFactory.h
diff --git a/Source/modules/indexeddb/IDBFactory.h b/Source/modules/indexeddb/IDBFactory.h
index bf251ae7d718bca5a4b9b602f97c7bb9a8ccfd00..a3588cdbd2ebcc06a29e01b3c4066491bdaaaf0c 100644
--- a/Source/modules/indexeddb/IDBFactory.h
+++ b/Source/modules/indexeddb/IDBFactory.h
@@ -41,13 +41,12 @@ class IDBKey;
class IDBKeyRange;
class ExecutionContext;
-class IDBFactory : public GarbageCollectedFinalized<IDBFactory>, public ScriptWrappable {
+class IDBFactory FINAL : public GarbageCollected<IDBFactory>, public ScriptWrappable {
public:
static IDBFactory* create(IndexedDBClient* client)
{
return new IDBFactory(client);
}
- ~IDBFactory();
void trace(Visitor*);
IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
« no previous file with comments | « Source/modules/geolocation/Geoposition.h ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698