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); |