OLD | NEW |
(Empty) | |
| 1 [SecureContext, |
| 2 NoInterfaceObject, |
| 3 Exposed=(Window,Worker)] |
| 4 interface NavigatorStorage { |
| 5 readonly attribute StorageManager storage; |
| 6 }; |
| 7 Navigator implements NavigatorStorage; |
| 8 WorkerNavigator implements NavigatorStorage; |
| 9 |
| 10 [SecureContext, |
| 11 Exposed=(Window,Worker)] |
| 12 interface StorageManager { |
| 13 Promise<boolean> persisted(); |
| 14 [Exposed=Window] Promise<boolean> persist(); |
| 15 |
| 16 Promise<StorageEstimate> estimate(); |
| 17 }; |
| 18 |
| 19 dictionary StorageEstimate { |
| 20 unsigned long long usage; |
| 21 unsigned long long quota; |
| 22 }; |
OLD | NEW |