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

Unified Diff: Source/modules/background_sync/SyncManager.h

Issue 1033963002: Oilpan: finalization of Permissions and SyncManager not needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 | Source/modules/permissions/Permissions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/background_sync/SyncManager.h
diff --git a/Source/modules/background_sync/SyncManager.h b/Source/modules/background_sync/SyncManager.h
index 6eca1a04fe2399c7708e5082be801bcb5e660859..5333b2ee4789147bfaabce82a88e9ab060637c26 100644
--- a/Source/modules/background_sync/SyncManager.h
+++ b/Source/modules/background_sync/SyncManager.h
@@ -16,14 +16,13 @@ class ScriptPromise;
class ScriptState;
class ServiceWorkerRegistration;
-class SyncManager final : public GarbageCollectedFinalized<SyncManager> , public ScriptWrappable {
+class SyncManager final : public GarbageCollected<SyncManager> , public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static SyncManager* create(ServiceWorkerRegistration* registration)
{
return new SyncManager(registration);
}
- ~SyncManager() { }
unsigned long minAllowablePeriod();
« no previous file with comments | « no previous file | Source/modules/permissions/Permissions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698