Bug 1852740: add tests for the `fetchpriority` attribute in Link headers. r=necko...
[gecko.git] / dom / permission / PermissionUtils.h
blob18b176f7f60fd4d67bdfc3b110d17762d3637fb4
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_PermissionUtils_h_
8 #define mozilla_dom_PermissionUtils_h_
10 #include "mozilla/dom/PermissionsBinding.h"
11 #include "mozilla/dom/PermissionStatusBinding.h"
12 #include "mozilla/Maybe.h"
14 namespace mozilla::dom {
16 const nsLiteralCString& PermissionNameToType(PermissionName aName);
18 /**
19 * Returns the permission name given a permission type.
21 * Note: the "midi" permission is implemented with two internal permissions
22 * ("midi" and "midi-sysex"). For this reason, when we pass "midi-sysex" to
23 * this function, it unconditionally returns the "midi" permission name,
24 * because that's the only public permission name.
26 Maybe<PermissionName> TypeToPermissionName(const nsACString& aType);
28 PermissionState ActionToPermissionState(uint32_t aAction);
30 } // namespace mozilla::dom
32 #endif