//
// This file manually written from cef/include/internal/cef_types.h.
// C API name: cef_state_t.
//
namespace Cef3
{
using System;
using System.Collections.Generic;
using System.Text;
///
/// Represents the state of a setting.
///
public enum CefState : int
{
///
/// Use the default state for the setting.
///
Default = 0,
///
/// Enable or allow the setting.
///
Enabled,
///
/// Disable or disallow the setting.
///
Disabled,
}
}