summaryrefslogtreecommitdiffstats
path: root/dom/system/nsIOSPermissionRequest.idl
blob: e0d7b531c77723ad32cd6f40037b0f306e66c0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
/* vim: set ts=2 et sw=2 tw=40: */
/* 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/. */

#include "nsISupports.idl"

[scriptable, uuid(95790842-75a0-430d-98bf-f5ce3788ea6d)]
interface nsIOSPermissionRequest: nsISupports
{
  /*
   * The permission state is not known. As an example, on macOS
   * this is used to indicate the user has not been prompted to
   * authorize or deny access and there is no policy in place to
   * deny access.
   */
  const uint16_t PERMISSION_STATE_NOTDETERMINED = 0;

  /* A policy prevents the application from accessing the resource */
  const uint16_t PERMISSION_STATE_RESTRICTED = 1;

  /* Access to the resource is denied */
  const uint16_t PERMISSION_STATE_DENIED = 2;

  /* Access to the resource is allowed */
  const uint16_t PERMISSION_STATE_AUTHORIZED = 3;

  /* Get the permission state for both audio and video capture */
  void getMediaCapturePermissionState(out uint16_t aVideo,
                                      out uint16_t aAudio);

  /* Get the permission state for audio capture */
  void getAudioCapturePermissionState(out uint16_t aAudio);

  /* Get the permission state for video capture */
  void getVideoCapturePermissionState(out uint16_t aVideo);

  /* Get the permission state for screen capture */
  void getScreenCapturePermissionState(out uint16_t aScreen);

  /*
   * Request permission to access video capture devices. Returns a
   * promise that resolves with |true| after the browser has been
   * granted permission to capture video. If capture access is denied,
   * the promise is resolved with |false|. The promise is rejected if
   * an error occurs.
   */
  [implicit_jscontext, must_use]
  Promise requestVideoCapturePermission();

  /*
   * Request permission to access audio capture devices. Returns a
   * promise with the same semantics as |requestVideoCapturePermission|.
   */
  [implicit_jscontext, must_use]
  Promise requestAudioCapturePermission();

  /*
   * Request permission to capture the screen using an unreliable method.
   * Attemps to trigger a screen capture permission dialog. Whether or not
   * the dialog is displayed and whether or not the user grants permission
   * to record the screen is not available to the caller. This method has
   * limited utility because it does not block to wait for a dialog
   * prompt or the user's reponse if a dialog is displayed. And the dialog
   * is not guaranteed to be displayed per OS restrictions.
   */
  void maybeRequestScreenCapturePermission();
};