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

Side by Side Diff: public/platform/modules/background_sync/WebSyncProvider.h

Issue 1279323002: Call dispatcher's releaseRegistration when done with registrations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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
« no previous file with comments | « Source/modules/background_sync/SyncRegistration.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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* callbacks)
52 { 52 {
53 // TODO(jkarlin): After landing both legs of the notifyWhenDone CLs, mak e this a pure virtual function. 53 // TODO(jkarlin): After landing both legs of the notifyWhenDone CLs, mak e this a pure virtual function.
54 callbacks->onError(new WebSyncError(WebSyncError::ErrorTypeAbort, "Funct ion not implemented.")); 54 callbacks->onError(new WebSyncError(WebSyncError::ErrorTypeAbort, "Funct ion not implemented."));
55 delete callbacks; 55 delete callbacks;
56 } 56 }
57
58 // Takes ownership of the WebServiceWorkerRegistration.
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 }
57 }; 70 };
58 71
59 } // namespace blink 72 } // namespace blink
60 73
61 #endif // WebSyncProvider_h 74 #endif // WebSyncProvider_h
OLDNEW
« no previous file with comments | « Source/modules/background_sync/SyncRegistration.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698