// Copyright © 2016 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
{
///
/// Supported context menu media state bit flags.
///
[Flags]
public enum ContextMenuMediaState
{
///
/// None
///
None = 0,
///
/// Error
///
Error = 1 << 0,
///
/// Paused
///
Paused = 1 << 1,
///
/// Muted
///
Muted = 1 << 2,
///
/// Loop
///
Loop = 1 << 3,
///
/// CanSave
///
CanSave = 1 << 4,
///
/// HasAudio
///
HasAudio = 1 << 5,
///
/// HasVideo
///
HasVideo = 1 << 6,
///
/// ControlRootElement
///
ControlRootElement = 1 << 7,
///
/// CanPrint
///
CanPrint = 1 << 8,
///
/// CanRotate
///
CanRotate = 1 << 9,
}
}