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

Unified Diff: Source/modules/push_messaging/PushManager.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/performance/WorkerPerformance.cpp ('k') | Source/modules/push_messaging/PushManager.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/push_messaging/PushManager.h
diff --git a/Source/modules/push_messaging/PushManager.h b/Source/modules/push_messaging/PushManager.h
index fd2ee3f67c2db5bc55fe92bb4e3ab5be8cc64e9b..a0d06a9d2d68193569713df179f1a6c14e2b136a 100644
--- a/Source/modules/push_messaging/PushManager.h
+++ b/Source/modules/push_messaging/PushManager.h
@@ -15,13 +15,12 @@ class ExecutionContext;
class ScriptPromise;
class ScriptState;
-class PushManager FINAL : public GarbageCollectedFinalized<PushManager>, public ScriptWrappable {
+class PushManager FINAL : public GarbageCollected<PushManager>, public ScriptWrappable {
public:
static PushManager* create()
{
return new PushManager();
}
- virtual ~PushManager();
ScriptPromise registerPushMessaging(ScriptState*, const String& senderId);
« no previous file with comments | « Source/modules/performance/WorkerPerformance.cpp ('k') | Source/modules/push_messaging/PushManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698