// Copyright © 2015 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
{
///
/// Plugin policies supported by IPluginHandler.OnBeforePluginLoad.
///
public enum PluginPolicy
{
///
/// Allow the content
///
Allow,
///
/// Allow important content and block unimportant content based on heuristics. The user can manually load blocked content.
///
DetectImportant,
///
/// Block the content. The user can manually load blocked content.
///
Block,
///
/// Disable the content. The user cannot load disabled content.
///
Disable
}
}