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

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 OWNERS for platform/modules/background_sync 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
20 : public GarbageCollectedFinalized<SyncManager>
jochen (gone - plz use gerrit) 2015/03/13 14:39:03 plz use blink style (all derived classes in one li
iclelland 2015/03/16 13:09:40 Done.
21 , public ScriptWrappable {
20 DEFINE_WRAPPERTYPEINFO(); 22 DEFINE_WRAPPERTYPEINFO();
21 public: 23 public:
22 static Geofencing* create(ServiceWorkerRegistration* registration) 24 static SyncManager* create(ServiceWorkerRegistration* registration)
23 { 25 {
24 return new Geofencing(registration); 26 return new SyncManager(registration);
25 } 27 }
28 ~SyncManager() { }
26 29
27 ScriptPromise registerRegion(ScriptState*, GeofencingRegion*); 30 unsigned long minAllowablePeriod();
28 ScriptPromise unregisterRegion(ScriptState*, const String& regionId);
29 ScriptPromise getRegisteredRegions(ScriptState*) const;
30 31
31 DECLARE_VIRTUAL_TRACE(); 32 ScriptPromise registerFunction(ScriptState*);
33 ScriptPromise registerFunction(ScriptState*, const SyncRegistrationOptions&) ;
34 ScriptPromise getRegistration(blink::ScriptState*, const String&);
35 ScriptPromise getRegistrations(ScriptState*);
36
37 DECLARE_TRACE();
32 38
33 private: 39 private:
34 explicit Geofencing(ServiceWorkerRegistration*); 40 explicit SyncManager(ServiceWorkerRegistration*);
35 41
36 Member<ServiceWorkerRegistration> m_registration; 42 Member<ServiceWorkerRegistration> m_registration;
37 }; 43 };
38 44
39 } // namespace blink 45 } // namespace blink
40 46
41 #endif // Geofencing_h 47 #endif // SyncManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698