Chromium Code Reviews| 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/WebPassOwnPtr.h" | 10 #include "public/platform/WebPassOwnPtr.h" |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 | 41 |
| 42 // Takes ownership of the WebSyncGetRegistrationsCallbacks. | 42 // Takes ownership of the WebSyncGetRegistrationsCallbacks. |
| 43 // Does not take ownership of the WebServiceWorkerRegistration. | 43 // Does not take ownership of the WebServiceWorkerRegistration. |
| 44 virtual void getRegistrations(blink::WebSyncRegistration::Periodicity, WebSe rviceWorkerRegistration*, WebSyncGetRegistrationsCallbacks*) = 0; | 44 virtual void getRegistrations(blink::WebSyncRegistration::Periodicity, WebSe rviceWorkerRegistration*, WebSyncGetRegistrationsCallbacks*) = 0; |
| 45 | 45 |
| 46 // Takes ownership of the WebSyncGetPermissionStatusCallbacks. | 46 // Takes ownership of the WebSyncGetPermissionStatusCallbacks. |
| 47 // Does not take ownership of the WebServiceWorkerRegistration. | 47 // Does not take ownership of the WebServiceWorkerRegistration. |
| 48 virtual void getPermissionStatus(blink::WebSyncRegistration::Periodicity, We bServiceWorkerRegistration*, WebSyncGetPermissionStatusCallbacks*) = 0; | 48 virtual void getPermissionStatus(blink::WebSyncRegistration::Periodicity, We bServiceWorkerRegistration*, WebSyncGetPermissionStatusCallbacks*) = 0; |
| 49 | 49 |
| 50 // Takes ownership of the WebSyncNotifyWhenDoneCallbacks. | 50 // Takes ownership of the WebSyncNotifyWhenDoneCallbacks. |
| 51 virtual void notifyWhenDone(int64_t syncId, WebSyncNotifyWhenDoneCallbacks* callbacks) | 51 virtual void notifyWhenDone(int64_t syncId, WebSyncNotifyWhenDoneCallbacks*) ; |
|
jsbell
2015/09/21 17:28:28
Uh, don't you want `= 0` here?
jkarlin
2015/09/21 17:32:38
Sorry, I meant to fix that before you saw it! Done
| |
| 52 { | |
| 53 // TODO(jkarlin): After landing both legs of the notifyWhenDone CLs, mak e this a pure virtual function. | |
| 54 callbacks->onError(WebSyncError(WebSyncError::ErrorTypeAbort, "Function not implemented.")); | |
| 55 delete callbacks; | |
| 56 } | |
| 57 | 52 |
| 58 // Takes ownership of the WebServiceWorkerRegistration. | 53 virtual void releaseRegistration(int64_t syncId); |
|
jsbell
2015/09/21 17:28:28
Ditto?
jkarlin
2015/09/21 17:32:38
Done.
| |
| 59 virtual void trackRegistration(WebSyncRegistration* registration) | |
| 60 { | |
| 61 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs , make this a pure virtual function. | |
| 62 return; | |
| 63 } | |
| 64 | |
| 65 virtual void releaseRegistration(int64_t syncId) | |
| 66 { | |
| 67 // TODO(jkarlin): After landing both legs of the releaseRegistration CLs , make this a pure virtual function. | |
| 68 return; | |
| 69 } | |
| 70 }; | 54 }; |
| 71 | 55 |
| 72 } // namespace blink | 56 } // namespace blink |
| 73 | 57 |
| 74 #endif // WebSyncProvider_h | 58 #endif // WebSyncProvider_h |
| OLD | NEW |