mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-11 08:13:35 +00:00
1ac439a64e
This means: - Making creation function calls async - Making GetPrincipal more specific - Making PermissionState mState protected instead of private and virtualizing UpdateState so children can have custom update logic Differential Revision: https://phabricator.services.mozilla.com/D182245
31 lines
890 B
C++
31 lines
890 B
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_MidiPermissionStatus_h_
|
|
#define mozilla_dom_MidiPermissionStatus_h_
|
|
|
|
#include "mozilla/dom/PermissionStatus.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
class MidiPermissionStatus final : public PermissionStatus {
|
|
public:
|
|
static RefPtr<CreatePromise> Create(nsPIDOMWindowInner* aWindow, bool aSysex);
|
|
|
|
private:
|
|
~MidiPermissionStatus() {}
|
|
|
|
MidiPermissionStatus(nsPIDOMWindowInner* aWindow, bool aSysex);
|
|
|
|
nsLiteralCString GetPermissionType() override;
|
|
|
|
bool mSysex;
|
|
};
|
|
|
|
} // namespace mozilla::dom
|
|
|
|
#endif // mozilla_dom_MidiPermissionStatus_h_
|