Bug 1852740: add tests for the `fetchpriority` attribute in Link headers. r=necko...
[gecko.git] / dom / permission / Permissions.h
blobb87924979378c12a38605d417db897532c7b1324
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_Permissions_h_
8 #define mozilla_dom_Permissions_h_
10 #include "nsISupports.h"
11 #include "nsPIDOMWindow.h"
12 #include "nsWrapperCache.h"
14 namespace mozilla {
16 class ErrorResult;
18 namespace dom {
20 class Promise;
22 class Permissions final : public nsISupports, public nsWrapperCache {
23 public:
24 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
25 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(Permissions)
27 explicit Permissions(nsPIDOMWindowInner* aWindow);
29 nsPIDOMWindowInner* GetParentObject() const { return mWindow; }
31 JSObject* WrapObject(JSContext* aCx,
32 JS::Handle<JSObject*> aGivenProto) override;
34 already_AddRefed<Promise> Query(JSContext* aCx,
35 JS::Handle<JSObject*> aPermission,
36 ErrorResult& aRv);
38 private:
39 ~Permissions();
41 nsCOMPtr<nsPIDOMWindowInner> mWindow;
44 } // namespace dom
45 } // namespace mozilla
47 #endif // mozilla_dom_permissions_h_