// Copyright © 2022 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; namespace CefSharp { /// /// Media access permissions used by . /// [Flags] public enum MediaAccessPermissionType : uint { /// /// No permission. /// None = 0, /// /// Device audio capture permission. /// AudioCapture = 1 << 0, /// /// Device video capture permission. /// VideoCapture = 1 << 1, /// /// Desktop audio capture permission. /// DesktopAudioCapture = 1 << 2, /// /// Desktop video capture permission. /// DesktopVideoCapture = 1 << 3, } }