OLD | NEW |
---|---|
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 WebSyncProvider_h | 5 #ifndef WebSyncProvider_h |
6 #define WebSyncProvider_h | 6 #define WebSyncProvider_h |
7 | 7 |
8 #include "public/platform/WebCallbacks.h" | 8 #include "public/platform/WebCallbacks.h" |
9 #include "public/platform/WebCommon.h" | 9 #include "public/platform/WebCommon.h" |
10 #include "public/platform/WebString.h" | 10 #include "public/platform/WebString.h" |
(...skipping 11 matching lines...) Expand all Loading... | |
22 using WebSyncUnregistrationCallbacks = WebCallbacks<bool*, WebSyncError*>; | 22 using WebSyncUnregistrationCallbacks = WebCallbacks<bool*, WebSyncError*>; |
23 using WebSyncGetRegistrationsCallbacks = WebCallbacks<WebVector<WebSyncRegistrat ion*>*, WebSyncError*>; | 23 using WebSyncGetRegistrationsCallbacks = WebCallbacks<WebVector<WebSyncRegistrat ion*>*, WebSyncError*>; |
24 using WebSyncGetPermissionStatusCallbacks = WebCallbacks<WebSyncPermissionStatus *, WebSyncError*>; | 24 using WebSyncGetPermissionStatusCallbacks = WebCallbacks<WebSyncPermissionStatus *, WebSyncError*>; |
25 | 25 |
26 class WebSyncProvider { | 26 class WebSyncProvider { |
27 public: | 27 public: |
28 virtual ~WebSyncProvider() { } | 28 virtual ~WebSyncProvider() { } |
29 | 29 |
30 // Takes ownership of the WebSyncRegistrationCallbacks. | 30 // Takes ownership of the WebSyncRegistrationCallbacks. |
31 // Does not take ownership of the WebServiceWorkerRegistration. | 31 // Does not take ownership of the WebServiceWorkerRegistration. |
32 virtual void registerBackgroundSync(const WebSyncRegistration*, WebServiceWo rkerRegistration*, WebSyncRegistrationCallbacks*) = 0; | 32 // TODO(iclelland): Remove the body of this method once it is implemented in all subclasses. |
33 virtual void registerBackgroundSync(const WebSyncRegistration* options, WebS erviceWorkerRegistration* serviceWorkerRegistration, bool requestedFromServiceWo rker, WebSyncRegistrationCallbacks* callbacks) | |
34 { | |
35 registerBackgroundSync(options, serviceWorkerRegistration, callbacks); | |
36 } | |
37 | |
38 // TODO(iclelland): Remove this deprecated method once callers have switched to the 4-argument version. | |
jkarlin
2015/08/26 12:45:41
The callers have already switched in this case. Pe
iclelland
2015/09/02 17:10:37
That is, of course, absolutely correct :) Thanks;
| |
39 virtual void registerBackgroundSync(const WebSyncRegistration*, WebServiceWo rkerRegistration*, WebSyncRegistrationCallbacks*) { } | |
33 | 40 |
34 // Takes ownership of the WebSyncUnregistrationCallbacks. | 41 // Takes ownership of the WebSyncUnregistrationCallbacks. |
35 // Does not take ownership of the WebServiceWorkerRegistration. | 42 // Does not take ownership of the WebServiceWorkerRegistration. |
36 virtual void unregisterBackgroundSync(blink::WebSyncRegistration::Periodicit y, int64_t, const WebString&, WebServiceWorkerRegistration*, WebSyncUnregistrati onCallbacks*) = 0; | 43 virtual void unregisterBackgroundSync(blink::WebSyncRegistration::Periodicit y, int64_t, const WebString&, WebServiceWorkerRegistration*, WebSyncUnregistrati onCallbacks*) = 0; |
37 | 44 |
38 // Takes ownership of the WebSyncRegistrationCallbacks. | 45 // Takes ownership of the WebSyncRegistrationCallbacks. |
39 // Does not take ownership of the WebServiceWorkerRegistration. | 46 // Does not take ownership of the WebServiceWorkerRegistration. |
40 virtual void getRegistration(blink::WebSyncRegistration::Periodicity, const WebString&, WebServiceWorkerRegistration*, WebSyncRegistrationCallbacks*) = 0; | 47 virtual void getRegistration(blink::WebSyncRegistration::Periodicity, const WebString&, WebServiceWorkerRegistration*, WebSyncRegistrationCallbacks*) = 0; |
41 | 48 |
42 // Takes ownership of the WebSyncGetRegistrationsCallbacks. | 49 // Takes ownership of the WebSyncGetRegistrationsCallbacks. |
(...skipping 22 matching lines...) Expand all Loading... | |
65 virtual void releaseRegistration(int64_t syncId) | 72 virtual void releaseRegistration(int64_t syncId) |
66 { | 73 { |
67 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs , make this a pure virtual function. | 74 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs , make this a pure virtual function. |
68 return; | 75 return; |
69 } | 76 } |
70 }; | 77 }; |
71 | 78 |
72 } // namespace blink | 79 } // namespace blink |
73 | 80 |
74 #endif // WebSyncProvider_h | 81 #endif // WebSyncProvider_h |
OLD | NEW |