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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/modules/permissions/Permissions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SyncManager_h 5 #ifndef SyncManager_h
6 #define SyncManager_h 6 #define SyncManager_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "wtf/text/WTFString.h" 10 #include "wtf/text/WTFString.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class SyncRegistrationOptions; 14 class SyncRegistrationOptions;
15 class ScriptPromise; 15 class ScriptPromise;
16 class ScriptState; 16 class ScriptState;
17 class ServiceWorkerRegistration; 17 class ServiceWorkerRegistration;
18 18
19 class SyncManager final : public GarbageCollectedFinalized<SyncManager> , public ScriptWrappable { 19 class SyncManager final : public GarbageCollected<SyncManager> , public ScriptWr appable {
20 DEFINE_WRAPPERTYPEINFO(); 20 DEFINE_WRAPPERTYPEINFO();
21 public: 21 public:
22 static SyncManager* create(ServiceWorkerRegistration* registration) 22 static SyncManager* create(ServiceWorkerRegistration* registration)
23 { 23 {
24 return new SyncManager(registration); 24 return new SyncManager(registration);
25 } 25 }
26 ~SyncManager() { }
27 26
28 unsigned long minAllowablePeriod(); 27 unsigned long minAllowablePeriod();
29 28
30 ScriptPromise registerFunction(ScriptState*); 29 ScriptPromise registerFunction(ScriptState*);
31 ScriptPromise registerFunction(ScriptState*, const SyncRegistrationOptions&) ; 30 ScriptPromise registerFunction(ScriptState*, const SyncRegistrationOptions&) ;
32 ScriptPromise getRegistration(blink::ScriptState*, const String&); 31 ScriptPromise getRegistration(blink::ScriptState*, const String&);
33 ScriptPromise getRegistrations(ScriptState*); 32 ScriptPromise getRegistrations(ScriptState*);
34 33
35 DECLARE_TRACE(); 34 DECLARE_TRACE();
36 35
37 private: 36 private:
38 explicit SyncManager(ServiceWorkerRegistration*); 37 explicit SyncManager(ServiceWorkerRegistration*);
39 38
40 Member<ServiceWorkerRegistration> m_registration; 39 Member<ServiceWorkerRegistration> m_registration;
41 }; 40 };
42 41
43 } // namespace blink 42 } // namespace blink
44 43
45 #endif // SyncManager_h 44 #endif // SyncManager_h
OLDNEW
« 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