// // This file manually written from cef/include/internal/cef_types.h. // C API name: cef_v8_accesscontrol_t. // namespace Cef3 { using System; /// /// V8 access control values. /// [Flags] public enum CefV8AccessControl { Default = 0, AllCanRead = 1, AllCanWrite = 1 << 1, ProhibitsOverwriting = 1 << 2, } }