From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../base/nsIPermissionDelegateHandler.idl | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dom/interfaces/base/nsIPermissionDelegateHandler.idl (limited to 'dom/interfaces/base/nsIPermissionDelegateHandler.idl') diff --git a/dom/interfaces/base/nsIPermissionDelegateHandler.idl b/dom/interfaces/base/nsIPermissionDelegateHandler.idl new file mode 100644 index 0000000000..4207077532 --- /dev/null +++ b/dom/interfaces/base/nsIPermissionDelegateHandler.idl @@ -0,0 +1,31 @@ +/* -*- Mode: C++; 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/. */ + +/** + * This file contains an interface to the Permission Delegate Handler, + */ + +#include "nsISupports.idl" + +interface nsIPrincipal; + +[scriptable, builtinclass, uuid(07611dc6-bf4d-4d8a-a64b-f3a5904dddc7)] +interface nsIPermissionDelegateHandler : nsISupports +{ + /* + * Return true if we are delegating permission to a third party which is not + * explicitly trusted. An orgin is not explicitly trusted means it is not + * presented in the Feature Policy ancestor chain, via src, explicitly listed + * in allow, and it is not the top-level origin. + * + * @param aTypes the permission types to check + */ + boolean maybeUnsafePermissionDelegate(in Array aTypes); + + /* + * Return true if permissions.delegation.enabled is true. + */ + readonly attribute boolean permissionDelegateFPEnabled; +}; -- cgit v1.2.3