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

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: Address comments from PS3 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..d30edc850923f735d659149402355c44229e095c 100644
--- a/content/common/background_sync_service.mojom
+++ b/content/common/background_sync_service.mojom
@@ -36,16 +36,13 @@ interface BackgroundSyncService {
Register(SyncRegistration options, int64 service_worker_registration_id,
bool requested_from_service_worker)
=> (BackgroundSyncError err, SyncRegistration options);
- GetRegistration(BackgroundSyncPeriodicity periodicity, string tag,
- int64 service_worker_registration_id)
+ GetRegistration(string tag, int64 service_worker_registration_id)
=> (BackgroundSyncError err, SyncRegistration? registration);
- GetRegistrations(BackgroundSyncPeriodicity periodicity,
- int64 service_worker_registration_id)
+ GetRegistrations(int64 service_worker_registration_id)
=> (BackgroundSyncError err, array<SyncRegistration> registrations);
Unregister(int64 handle_id, int64 service_worker_registration_id)
=> (BackgroundSyncError err);
- GetPermissionStatus(BackgroundSyncPeriodicity periodicity,
- int64 service_worker_registration_id)
+ GetPermissionStatus(int64 service_worker_registration_id)
=> (BackgroundSyncError err, PermissionStatus status);
DuplicateRegistrationHandle(int64 handle_id)
=> (BackgroundSyncError err, SyncRegistration? registration);
« no previous file with comments | « content/child/background_sync/background_sync_type_converters_unittest.cc ('k') | content/public/common/background_sync.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698