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

Side by Side Diff: Source/modules/background_sync/SyncManager.h

Issue 963683002: Add IDL and initial Blink API for Background Sync (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing serviceWorkerRegistration.syncManager to interface tests 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
OLDNEW
1 // Copyright 2014 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 Geofencing_h 5 #ifndef SyncManager_h
6 #define Geofencing_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 GeofencingRegion; 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 Geofencing final : public GarbageCollected<Geofencing>, public ScriptWrapp able { 19 class SyncManager final : public GarbageCollectedFinalized<SyncManager> , public ScriptWrappable {
20 DEFINE_WRAPPERTYPEINFO(); 20 DEFINE_WRAPPERTYPEINFO();
21 public: 21 public:
22 static Geofencing* create(ServiceWorkerRegistration* registration) 22 static SyncManager* create(ServiceWorkerRegistration* registration)
23 { 23 {
24 return new Geofencing(registration); 24 return new SyncManager(registration);
25 } 25 }
26 ~SyncManager() { }
26 27
27 ScriptPromise registerRegion(ScriptState*, GeofencingRegion*); 28 unsigned long minAllowablePeriod();
28 ScriptPromise unregisterRegion(ScriptState*, const String& regionId);
29 ScriptPromise getRegisteredRegions(ScriptState*) const;
30 29
31 DECLARE_VIRTUAL_TRACE(); 30 ScriptPromise registerFunction(ScriptState*);
31 ScriptPromise registerFunction(ScriptState*, const SyncRegistrationOptions&) ;
32 ScriptPromise getRegistration(blink::ScriptState*, const String&);
33 ScriptPromise getRegistrations(ScriptState*);
34
35 DECLARE_TRACE();
32 36
33 private: 37 private:
34 explicit Geofencing(ServiceWorkerRegistration*); 38 explicit SyncManager(ServiceWorkerRegistration*);
35 39
36 Member<ServiceWorkerRegistration> m_registration; 40 Member<ServiceWorkerRegistration> m_registration;
37 }; 41 };
38 42
39 } // namespace blink 43 } // namespace blink
40 44
41 #endif // Geofencing_h 45 #endif // SyncManager_h
OLDNEW
« no previous file with comments | « Source/modules/background_sync/SyncEventInit.idl ('k') | Source/modules/background_sync/SyncManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698