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

Unified Diff: content/common/background_sync_service.mojom

Issue 1614063002: [BackgroundSync Cleanup] Remove periodic sync code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@purge_power
Patch Set: More Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/common/background_sync_service.mojom
diff --git a/content/common/background_sync_service.mojom b/content/common/background_sync_service.mojom
index d1b0cd1089cf65e9049b08958198f98bec242538..5826cfce8bd555ae0c437ab5c8ef01e8ee161928 100644
--- a/content/common/background_sync_service.mojom
+++ b/content/common/background_sync_service.mojom
@@ -36,15 +36,15 @@ interface BackgroundSyncService {
Register(SyncRegistration options, int64 service_worker_registration_id,
bool requested_from_service_worker)
=> (BackgroundSyncError err, SyncRegistration options);
- GetRegistration(BackgroundSyncPeriodicity periodicity, string tag,
+ GetRegistration(string tag,
iclelland 2016/01/22 19:20:42 Combine with next line?
jkarlin 2016/01/22 19:45:46 Thanks, git cl format doesn't handle mojom yet :)
int64 service_worker_registration_id)
=> (BackgroundSyncError err, SyncRegistration? registration);
- GetRegistrations(BackgroundSyncPeriodicity periodicity,
+ GetRegistrations(
iclelland 2016/01/22 19:20:42 Ditto
jkarlin 2016/01/22 19:45:46 Done.
int64 service_worker_registration_id)
=> (BackgroundSyncError err, array<SyncRegistration> registrations);
Unregister(int64 handle_id, int64 service_worker_registration_id)
=> (BackgroundSyncError err);
- GetPermissionStatus(BackgroundSyncPeriodicity periodicity,
+ GetPermissionStatus(
iclelland 2016/01/22 19:20:42 Ditto
jkarlin 2016/01/22 19:45:46 Done.
int64 service_worker_registration_id)
=> (BackgroundSyncError err, PermissionStatus status);
DuplicateRegistrationHandle(int64 handle_id)

Powered by Google App Engine
This is Rietveld 408576698