- From: Kenji Baheux <notifications@github.com>
- Date: Wed, 08 Apr 2015 00:05:05 -0700
- To: w3c/permissions <permissions@noreply.github.com>
Received on Wednesday, 8 April 2015 07:05:58 UTC
The Background sync IDL is being updated: we are moving toward a design where periodic and one-off background sync would be independent. The UA may place these behind separate permissions.
https://github.com/jakearchibald/BackgroundSync/blob/mvp/idl.md (Review on-going)
Strawman:
```javascript
enum PermissionName {
"geolocation",
"notifications",
"push",
"midi",
"backgroundsync"
};
dictionary BackgroundSyncPermissionDescriptor : PermissionDescriptor {
enum BackgroundSyncType type;
};
enum BackgroundSyncType {
"one-off",
"periodic"
};
```
cc/ @jakearchibald @jkarlin @annevk
---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/permissions/issues/29
Received on Wednesday, 8 April 2015 07:05:58 UTC