OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Specification at: |
| 6 // https://w3c.github.io/permissions/ |
| 7 |
| 8 enum PermissionState { |
| 9 "granted", |
| 10 "denied", |
| 11 "prompt" |
| 12 }; |
| 13 |
| 14 [ |
| 15 ActiveDOMObject, |
| 16 GarbageCollected, |
| 17 Exposed=(Window,Worker), |
| 18 RuntimeEnabled=Permissions, |
| 19 ] interface PermissionStatus : EventTarget { |
| 20 [DeprecateAs=PermissionStatusStatus, ImplementedAs=state] readonly attribute
PermissionState status; |
| 21 |
| 22 readonly attribute PermissionState state; |
| 23 attribute EventHandler onchange; |
| 24 }; |
OLD | NEW |