2015-07-28 16:33:46 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://w3c.github.io/permissions/#permissions-interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum PermissionName {
|
|
|
|
"geolocation",
|
|
|
|
"notifications",
|
2015-12-18 16:02:50 +03:00
|
|
|
"push"
|
|
|
|
// Unsupported: "midi"
|
2015-07-28 16:33:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary PermissionDescriptor {
|
|
|
|
required PermissionName name;
|
|
|
|
};
|
|
|
|
|
2016-04-22 21:22:42 +03:00
|
|
|
// We don't implement `PushPermissionDescriptor` because we use a background
|
|
|
|
// message quota instead of `userVisibleOnly`.
|
2015-07-28 16:33:46 +03:00
|
|
|
|
2016-02-03 19:21:31 +03:00
|
|
|
[Exposed=(Window)]
|
2015-07-28 16:33:46 +03:00
|
|
|
interface Permissions {
|
2015-07-28 16:33:46 +03:00
|
|
|
[Throws]
|
|
|
|
Promise<PermissionStatus> query(object permission);
|
2016-08-29 04:30:00 +03:00
|
|
|
[Throws, Pref="dom.permissions.revoke.enable"]
|
2016-03-03 00:09:38 +03:00
|
|
|
Promise<PermissionStatus> revoke(object permission);
|
2015-07-28 16:33:46 +03:00
|
|
|
};
|