// Copyright © 2014 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.
namespace CefSharp
{
///
/// Represents the state of a setting.
///
public enum CefState
{
///
/// Use the default state for the setting.
///
Default = 0,
///
/// Enable or allow the setting.
///
Enabled,
///
/// Disable or disallow the setting.
///
Disabled,
}
}