| 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 // TODO(iclelland): Remove the body of this method once it is implemented in
all subclasses. | 32 virtual void registerBackgroundSync(const WebSyncRegistration*, WebServiceWo
rkerRegistration*, bool, WebSyncRegistrationCallbacks*) = 0; |
| 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 the browser implement
s the 4-argument version. | |
| 39 virtual void registerBackgroundSync(const WebSyncRegistration*, WebServiceWo
rkerRegistration*, WebSyncRegistrationCallbacks*) { } | |
| 40 | 33 |
| 41 // Takes ownership of the WebSyncUnregistrationCallbacks. | 34 // Takes ownership of the WebSyncUnregistrationCallbacks. |
| 42 // Does not take ownership of the WebServiceWorkerRegistration. | 35 // Does not take ownership of the WebServiceWorkerRegistration. |
| 43 virtual void unregisterBackgroundSync(blink::WebSyncRegistration::Periodicit
y, int64_t, const WebString&, WebServiceWorkerRegistration*, WebSyncUnregistrati
onCallbacks*) = 0; | 36 virtual void unregisterBackgroundSync(blink::WebSyncRegistration::Periodicit
y, int64_t, const WebString&, WebServiceWorkerRegistration*, WebSyncUnregistrati
onCallbacks*) = 0; |
| 44 | 37 |
| 45 // Takes ownership of the WebSyncRegistrationCallbacks. | 38 // Takes ownership of the WebSyncRegistrationCallbacks. |
| 46 // Does not take ownership of the WebServiceWorkerRegistration. | 39 // Does not take ownership of the WebServiceWorkerRegistration. |
| 47 virtual void getRegistration(blink::WebSyncRegistration::Periodicity, const
WebString&, WebServiceWorkerRegistration*, WebSyncRegistrationCallbacks*) = 0; | 40 virtual void getRegistration(blink::WebSyncRegistration::Periodicity, const
WebString&, WebServiceWorkerRegistration*, WebSyncRegistrationCallbacks*) = 0; |
| 48 | 41 |
| 49 // Takes ownership of the WebSyncGetRegistrationsCallbacks. | 42 // Takes ownership of the WebSyncGetRegistrationsCallbacks. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 72 virtual void releaseRegistration(int64_t syncId) | 65 virtual void releaseRegistration(int64_t syncId) |
| 73 { | 66 { |
| 74 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs
, make this a pure virtual function. | 67 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs
, make this a pure virtual function. |
| 75 return; | 68 return; |
| 76 } | 69 } |
| 77 }; | 70 }; |
| 78 | 71 |
| 79 } // namespace blink | 72 } // namespace blink |
| 80 | 73 |
| 81 #endif // WebSyncProvider_h | 74 #endif // WebSyncProvider_h |
| OLD | NEW |