Unit uCEFTypes

Description
Uses
Classes, Interfaces, Objects and Records
Functions and Procedures
Types
Constants
Variables

Description

This item has no description.

Overview

Classes, Interfaces, Objects and Records

Name Description
Record TMyMemoryStatusEx Record used with GetGlobalMemoryStatusEx to get the memory status.
Record TOSVersionInfoEx Record used with RtlGetVersion to get the Windows version information.
Record TCefStringWide CEF wide string type definition. Whomever allocates |str| is responsible for providing an appropriate |dtor| implementation that will free the string in the same memory space. When reusing an existing string structure make sure to call |dtor| for the old value before assigning new |str| and |dtor| values. Static strings will have a NULL |dtor| value. Using the below functions if you want this managed for you.
Record TCefStringUtf8 CEF utf8 string type definition. Whomever allocates |str| is responsible for providing an appropriate |dtor| implementation that will free the string in the same memory space. When reusing an existing string structure make sure to call |dtor| for the old value before assigning new |str| and |dtor| values. Static strings will have a NULL |dtor| value. Using the below functions if you want this managed for you.
Record TCefStringUtf16 CEF utf16 string type definition. Whomever allocates |str| is responsible for providing an appropriate |dtor| implementation that will free the string in the same memory space. When reusing an existing string structure make sure to call |dtor| for the old value before assigning new |str| and |dtor| values. Static strings will have a NULL |dtor| value. Using the below functions if you want this managed for you.
Record TFileVersionInfo Record used by GetDLLVersion to get the DLL version information
Record TCefMainArgs Structure representing CefExecuteProcess arguments.
Record TCefRect Structure representing a rectangle.
Record TCefPoint Structure representing a point.
Record TCefSize Structure representing a size.
Record TCefRange Structure representing a range.
Record TCefCursorInfo Structure representing cursor information. |buffer| will be |size.width|*|size.height|*4 bytes in size and represents a BGRA image with an upper-left origin.
Record TCefUrlParts URL component parts.
Record TUrlParts String version of TCefUrlParts
Record TCefInsets Structure representing insets.
Record TCefTouchHandleState Touch handle state.
Record TCefCompositionUnderline Structure representing IME composition underline information. This is a thin wrapper around Blink's WebCompositionUnderline class and should be kept in sync with that.
Record TCefTime Time information. Values should always be in UTC.
Record TCefBoxLayoutSettings Initialization settings. Specify NULL or 0 to get the recommended default values. Many of these and other settings can also configured using command- line switches.
Record TCefSettings Initialization settings. Specify NULL or 0 to get the recommended default values. Many of these and other settings can also configured using command- line switches.
Record TCefWindowInfo Structure representing window information.
Record TCefDraggableRegion Structure representing a draggable region.
Record TCefKeyEvent Structure representing keyboard event information.
Record TCefPopupFeatures Popup window features.
Record TCefBrowserSettings Browser initialization settings. Specify NULL or 0 to get the recommended default values. The consequences of using custom values may not be well tested. Many of these and other settings can also configured using command- line switches.
Record TCefScreenInfo Screen information used when window rendering is disabled. This structure is passed as a parameter to ICefRenderHandler.GetScreenInfo and should be filled in by the client.
Record TCefRequestContextSettings Request context initialization settings. Specify NULL or 0 to get the recommended default values.
Record TCefCookie Cookie information.
Record TCookie Cookie information.
Record TCefPdfPrintSettings Structure representing PDF print settings. These values match the parameters supported by the DevTools Page.printToPDF function. See https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF
Record TCefMouseEvent Structure representing mouse event information.
Record TCefTouchEvent Structure representing touch event information.
Record TCefAudioParameters Structure representing the audio parameters for setting up the audio handler.
Record TCefMediaSinkDeviceInfo Device information for a MediaSink object. handler.
Record TCefBaseRefCounted All ref-counted framework structures must include this structure first.
Record TCefBaseScoped All scoped framework structures must include this structure first.
Record TCefStreamWriter Structure used to write data to a stream. The functions of this structure may be called on any thread.
Record TCefX509CertPrincipal Structure representing the issuer or subject field of an X.509 certificate.
Record TCefX509Certificate Structure representing a X.509 certificate.
Record TCefSslInfo Structure representing SSL information.
Record TCefSSLStatus Structure representing the SSL information for a navigation entry.
Record TCefSelectClientCertificateCallback Callback structure used to select a client certificate for authentication.
Record TCefRunContextMenuCallback Callback structure used for continuation of custom context menu display.
Record TCefFileDialogCallback Callback structure for asynchronous continuation of file dialog requests.
Record TCefDialogHandler Implement this structure to handle dialog events. The functions of this structure will be called on the browser process UI thread.
Record TCefDisplayHandler Implement this structure to handle events related to browser display state. The functions of this structure will be called on the UI thread.
Record TCefDownloadHandler Structure used to handle file downloads. The functions of this structure will called on the browser process UI thread.
Record TCefDragHandler Implement this structure to handle events related to dragging. The functions of this structure will be called on the UI thread.
Record TCefFindHandler Implement this structure to handle events related to find results. The functions of this structure will be called on the UI thread.
Record TCefFocusHandler Implement this structure to handle events related to focus. The functions of this structure will be called on the UI thread.
Record TCefJsDialogHandler Implement this structure to handle events related to JavaScript dialogs. The functions of this structure will be called on the UI thread.
Record TCefJsDialogCallback Callback structure used for asynchronous continuation of JavaScript dialog requests.
Record TCefKeyboardHandler Implement this structure to handle events related to keyboard input. The functions of this structure will be called on the UI thread.
Record TCefLifeSpanHandler Implement this structure to handle events related to browser life span. The functions of this structure will be called on the UI thread unless otherwise indicated.
Record TCefRegistration Generic callback structure used for managing the lifespan of a registration.
Record TCefDevToolsMessageObserver Callback structure for ICefBrowserHost.AddDevToolsMessageObserver. The functions of this structure will be called on the browser process UI thread.
Record TCefMediaRouter Supports discovery of and communication with media devices on the local network via the Cast and DIAL protocols. The functions of this structure may be called on any browser process thread unless otherwise indicated.
Record TCefMediaObserver Implemented by the client to observe MediaRouter events and registered via ICefMediaRouter.AddObserver. The functions of this structure will be called on the browser process UI thread.
Record TCefMediaRoute Represents the route between a media source and sink. Instances of this object are created via ICefMediaRouter.CreateRoute and retrieved via ICefMediaObserver.OnRoutes. Contains the status and metadata of a routing operation. The functions of this structure may be called on any browser process thread unless otherwise indicated.
Record TCefMediaRouteCreateCallback Callback structure for ICefMediaRouter.CreateRoute. The functions of this structure will be called on the browser process UI thread.
Record TCefMediaSink Represents a sink to which media can be routed. Instances of this object are retrieved via ICefMediaObserver.OnSinks. The functions of this structure may be called on any browser process thread unless otherwise indicated.
Record TCefMediaSinkDeviceInfoCallback Callback structure for ICefMediaSink.GetDeviceInfo. The functions of this structure will be called on the browser process UI thread.
Record TCefMediaSource Represents a source from which media can be routed. Instances of this object are retrieved via ICefMediaRouter.GetSource. The functions of this structure may be called on any browser process thread unless otherwise indicated.
Record TCefGetExtensionResourceCallback Callback structure used for asynchronous continuation of ICefExtensionHandler.GetExtensionResource.
Record TCefExtensionHandler Implement this structure to handle events related to browser extensions. The functions of this structure will be called on the UI thread. See ICefRequestContext.LoadExtension for information about extension loading.
Record TCefAudioHandler Implement this structure to handle audio events.
Record TCefExtension Object representing an extension. Methods may be called on any thread unless otherwise indicated.
Record TCefLoadHandler Implement this structure to handle events related to browser load status. The functions of this structure will be called on the browser process UI thread or render process main thread (TID_RENDERER).
Record TCefRenderHandler Implement this structure to handle events when window rendering is disabled. The functions of this structure will be called on the UI thread.
Record TCefPreferenceRegistrar Structure that manages custom preference registrations.
Record TCefPreferenceManager Manage access to preferences. Many built-in preferences are registered by Chromium. Custom preferences can be registered in ICefBrowserProcessHandler.OnRegisterCustomPreferences.
Record TCefV8StackTrace Structure representing a V8 stack trace handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
Record TCefV8StackFrame Structure representing a V8 stack frame handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
Record TCefStreamReader Structure used to read data from a stream. The functions of this structure may be called on any thread.
Record TCefReadHandler Structure the client can implement to provide a custom stream reader. The functions of this structure may be called on any thread.
Record TCefWriteHandler Structure the client can implement to provide a custom stream writer. The functions of this structure may be called on any thread.
Record TCefXmlReader Structure that supports the reading of XML data via the libxml streaming API. The functions of this structure should only be called on the thread that creates the object.
Record TCefZipReader Structure that supports the reading of zip archives via the zlib unzip API. The functions of this structure should only be called on the thread that creates the object.
Record TCefUrlrequestClient Structure that should be implemented by the ICefUrlRequest client. The functions of this structure will be called on the same thread that created the request unless otherwise documented.
Record TCefUrlRequest Structure used to make a URL request. URL requests are not associated with a browser instance so no ICefClient callbacks will be executed. URL requests can be created on any valid CEF thread in either the browser or render process. Once created the functions of the URL request object must be accessed on the same thread that created it.
Record TCefThread A simple thread abstraction that establishes a message loop on a new thread. The consumer uses ICefTaskRunner to execute code on the thread's message loop. The thread is terminated when the ICefThread object is destroyed or stop() is called. All pending tasks queued on the thread's message loop will run to completion before the thread is terminated. cef_thread_create() can be called on any valid CEF thread in either the browser or render process. This structure should only be used for tasks that require a dedicated thread. In most cases you can post tasks to an existing CEF thread instead of creating a new one; see cef_task.h for details.
Record TCefWaitableEvent WaitableEvent is a thread synchronization tool that allows one thread to wait for another thread to finish some work. This is equivalent to using a Lock+ConditionVariable to protect a simple boolean value. However, using WaitableEvent in conjunction with a Lock to wait for a more complex state change (e.g., for an item to be added to a queue) is not recommended. In that case consider using a ConditionVariable instead of a WaitableEvent. It is safe to create and/or signal a WaitableEvent from any thread. Blocking on a WaitableEvent by calling the *wait() functions is not allowed on the browser process UI or IO threads.
Record TCefTaskRunner Structure that asynchronously executes tasks on the associated thread. It is safe to call the functions of this structure on any thread.

CEF maintains multiple internal threads that are used for handling different types of tasks in different processes. The TCefThreadId definitions in cef_types.h list the common CEF threads. Task runners are also available for other CEF threads as appropriate (for example, V8 WebWorker threads).

Record TCefEndTracingCallback Implement this structure to receive notification when tracing has completed. The functions of this structure will be called on the browser process UI thread.
Record TCefResourceBundle Structure used for retrieving resources from the resource bundle (*.pak) files loaded by CEF during startup or via the ICefResourceBundleHandler returned from ICefApp.GetResourceBundleHandler. See TCefSettings for additional options related to resource bundle loading. The functions of this structure may be called on any thread unless otherwise indicated.
Record TCefMenuModelDelegate Implement this structure to handle menu model events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefProcessMessage Structure representing a message. Can be used on any process and thread.
Record TCefRenderProcessHandler Structure used to implement render process callbacks. The functions of this structure will be called on the render process main thread (TID_RENDERER) unless otherwise indicated.
Record TCefRequestHandler Implement this structure to handle events related to browser requests. The functions of this structure will be called on the thread indicated.
Record TCefMediaAccessCallback Callback structure used for asynchronous continuation of media access permission requests.
Record TCefMediaAccessHandler Implement this structure to handle events related to media access permission requests. The functions of this structure will be called on the browser process UI thread.
Record TCefPermissionPromptCallback Callback structure used for asynchronous continuation of permission prompts.
Record TCefPermissionHandler Implement this structure to handle events related to permission requests. The functions of this structure will be called on the browser process UI thread.
Record TCefSharedMemoryRegion Structure that wraps platform-dependent share memory region mapping.
Record TCefSharedProcessMessageBuilder Structure that builds a ICefProcessMessage containing a shared memory region. This structure is not thread-safe but may be used exclusively on a different thread from the one which constructed it.
Record TCefResourceSkipCallback Callback for asynchronous continuation of ICefResourceHandler.skip().
Record TCefResourceReadCallback Callback for asynchronous continuation of ICefResourceHandler.read().
Record TCefResourceHandler Structure used to implement a custom request handler structure. The functions of this structure will be called on the IO thread unless otherwise indicated.
Record TCefResourceRequestHandler Implement this structure to handle events related to browser requests. The functions of this structure will be called on the IO thread unless otherwise indicated.
Record TCefCookieAccessFilter Implement this structure to filter cookies that may be sent or received from resource requests. The functions of this structure will be called on the IO thread unless otherwise indicated.
Record TCefResponse Structure used to represent a web response. The functions of this structure may be called on any thread.
Record TCefResponseFilter Implement this structure to filter resource response content. The functions of this structure will be called on the browser process IO thread.
Record TCefAuthCallback Callback structure used for asynchronous continuation of authentication requests.
Record TCefCallback Generic callback structure used for asynchronous continuation.
Record TCefRequestContext A request context provides request handling for a set of related browser or URL request objects. A request context can be specified when creating a new browser via the ICefBrowserHost static factory functions or when creating a new URL request via the ICefUrlRequest static factory functions. Browser objects with different request contexts will never be hosted in the same render process. Browser objects with the same request context may or may not be hosted in the same render process depending on the process model. Browser objects created indirectly via the JavaScript window.open function or targeted links will share the same render process and the same request context as the source browser. When running in single-process mode there is only a single render process (the main process) and so all browsers created in single-process mode will share the same request context. This will be the first request context passed into a ICefBrowserHost static factory function and all other request context objects will be ignored.
Record TCefRequestContextHandler Implement this structure to provide handler implementations. The handler instance will not be released until all objects related to the context have been destroyed.
Record TCefCompletionCallback Generic callback structure used for asynchronous completion.
Record TCefCookieManager Structure used for managing cookies. The functions of this structure may be called on any thread unless otherwise indicated.
Record TCefSchemeHandlerFactory Structure that creates ICefResourceHandler instances for handling scheme requests. The functions of this structure will always be called on the IO thread.
Record TCefResolveCallback Callback structure for ICefRequestContext.ResolveHost.
Record TCefCookieVisitor Structure to implement for visiting cookie values. The functions of this structure will always be called on the UI thread.
Record TCefSetCookieCallback Structure to implement to be notified of asynchronous completion via ICefCookieManager.SetCookie().
Record TCefDeleteCookiesCallback Structure to implement to be notified of asynchronous completion via ICefCookieManager.DeleteCookies().
Record TCefRunFileDialogCallback Callback structure for ICefBrowserHost.RunFileDialog. The functions of this structure will be called on the browser process UI thread.
Record TCefDownloadImageCallback Callback structure for ICefBrowserHost.DownloadImage. The functions of this structure will be called on the browser process UI thread.
Record TCefImage Container for a single image represented at different scale factors. All image representations should be the same size in density independent pixel (DIP) units. For example, if the image at scale factor 1.0 is 100x100 pixels then the image at scale factor 2.0 should be 200x200 pixels – both images will display with a DIP size of 100x100 units. The functions of this structure can be called on any browser process thread.
Record TCefPdfPrintCallback Callback structure for ICefBrowserHost.PrintToPDF. The functions of this structure will be called on the browser process UI thread.
Record TCefNavigationEntryVisitor Callback structure for ICefBrowserHost.GetNavigationEntries. The functions of this structure will be called on the browser process UI thread.
Record TCefNavigationEntry Structure used to represent an entry in navigation history.
Record TCefPrintSettings Structure representing print settings.
Record TCefPrintDialogCallback Callback structure for asynchronous continuation of print dialog requests.
Record TCefPrintJobCallback Callback structure for asynchronous continuation of print job requests.
Record TCefPrintHandler Implement this structure to handle printing on Linux. Each browser will have only one print job in progress at a time. The functions of this structure will be called on the browser process UI thread.
Record TCefDragData Structure used to represent drag data. The functions of this structure may be called on any thread.
Record TCefCommandLine Structure used to create and/or parse command line arguments. Arguments with "–", "-" and, on Windows, "/" prefixes are considered switches. Switches will always precede any arguments without switch prefixes. Switches can optionally have a value specified using the "=" delimiter (e.g. "-switch=value"). An argument of "–" will terminate switch parsing with all subsequent tokens, regardless of prefix, being interpreted as non-switch arguments. Switch names should be lowercase ASCII and will be converted to such if necessary. Switch values will retain the original case and UTF8 encoding. This structure can be used before cef_initialize() is called.
Record TCefCommandHandler Implement this structure to handle events related to commands. The functions of this structure will be called on the UI thread.
Record TCefSchemeRegistrar Structure that manages custom scheme registrations.
Record TCefBinaryValue Structure representing a binary value. Can be used on any process and thread.
Record TCefValue Structure that wraps other data value types. Complex types (binary, dictionary and list) will be referenced but not owned by this object. Can be used on any process and thread.
Record TCefDictionaryValue Structure representing a dictionary value. Can be used on any process and thread.
Record TCefListValue Structure representing a list value. Can be used on any process and thread.
Record TCefStringVisitor Implement this structure to receive string values asynchronously.
Record TCefPostDataElement Structure used to represent a single element in the request post data. The functions of this structure may be called on any thread.
Record TCefPostData Structure used to represent post data for a web request. The functions of this structure may be called on any thread.
Record TCefRequest Structure used to represent a web request. The functions of this structure may be called on any thread.
Record TCefTask Implement this structure for asynchronous task execution. If the task is posted successfully and if the associated message loop is still running then the execute() function will be called on the target thread. If the task fails to post then the task object may be destroyed on the source thread instead of the target thread. For this reason be cautious when performing work in the task object destructor.
Record TCefDomVisitor Structure to implement for visiting the DOM. The functions of this structure will be called on the render process main thread.
Record TCefMenuModel Supports creation and modification of menus. See TCefMenuId (cef_menu_id_t) for the command ids that have default implementations. All user-defined command ids should be between MENU_ID_USER_FIRST and MENU_ID_USER_LAST. The functions of this structure can only be accessed on the browser process the UI thread.
Record TCefContextMenuParams Provides information about the context menu state. The functions of this structure can only be accessed on browser process the UI thread.
Record TCefDownloadItem Structure used to represent a download item.
Record TCefBeforeDownloadCallback Callback structure used to asynchronously continue a download.
Record TCefDownloadItemCallback Callback structure used to asynchronously cancel a download.
Record TCefDomNode Structure used to represent a DOM node. The functions of this structure should only be called on the render process main thread.
Record TCefDomDocument Structure used to represent a DOM document. The functions of this structure should only be called on the render process main thread thread.
Record TCefv8Handler Structure that should be implemented to handle V8 function calls. The functions of this structure will be called on the thread associated with the V8 function.
Record TCefV8Exception Structure representing a V8 exception. The functions of this structure may be called on any render process thread.
Record TCefv8ArrayBufferReleaseCallback Callback structure that is passed to ICefv8value.CreateArrayBuffer.
Record TCefv8Value Structure representing a V8 value handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
Record TCefV8Context Structure representing a V8 context handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
Record TCefV8Interceptor Structure that should be implemented to handle V8 interceptor calls. The functions of this structure will be called on the thread associated with the V8 interceptor. Interceptor's named property handlers (with first argument of type CefString) are called when object is indexed by string. Indexed property handlers (with first argument of type int) are called when object is indexed by integer.
Record TCefV8Accessor Structure that should be implemented to handle V8 accessor calls. Accessor identifiers are registered by calling ICefv8value.SetValue(). The functions of this structure will be called on the thread associated with the V8 accessor.
Record TCefFrame Structure used to represent a frame in the browser window. When used in the browser process the functions of this structure may be called on any thread unless otherwise indicated in the comments. When used in the render process the functions of this structure may only be called on the main thread.
Record TCefFrameHandler Implement this STRUCTURE to handle events related to ICefFrame life span. The order of callbacks is:

(1) During initial ICefBrowserHost creation and navigation of the main frame: - ICefFrameHandler.OnFrameCreated => The initial main frame object has been created. Any commands will be queued until the frame is attached. - ICefFrameHandler.OnMainFrameChanged => The initial main frame object has been assigned to the browser. - ICefLifeSpanHandler.OnAfterCreated => The browser is now valid and can be used. - ICefFrameHandler.OnFrameAttached => The initial main frame object is now connected to its peer in the renderer process. Commands can be routed.

(2) During further ICefBrowserHost navigation/loading of the main frame and/or sub-frames: - ICefFrameHandler.OnFrameCreated => A new main frame or sub-frame object has been created. Any commands will be queued until the frame is attached. - ICefFrameHandler.OnFrameAttached => A new main frame or sub-frame object is now connected to its peer in the renderer process. Commands can be routed. - ICefFrameHandler.OnFrameDetached => An existing main frame or sub- frame object has lost its connection to the renderer process. If multiple objects are detached at the same time then notifications will be sent for any sub-frame objects before the main frame object. Commands can no longer be routed and will be discarded. - ICefFrameHandler.OnMainFrameChanged => A new main frame object has been assigned to the browser. This will only occur with cross-origin navigation or re-navigation after renderer process termination (due to crashes, etc).

(3) During final ICefBrowserHost destruction of the main frame: - ICefFrameHandler.OnFrameDetached => Any sub-frame objects have lost their connection to the renderer process. Commands can no longer be routed and will be discarded. - ICefLifeSpanHandler.OnBeforeClose => The browser has been destroyed. - ICefFrameHandler.OnFrameDetached => The main frame object have lost its connection to the renderer process. Notifications will be sent for any sub-frame objects before the main frame object. Commands can no longer be routed and will be discarded. - ICefFrameHandler.OnMainFrameChanged => The final main frame object has been removed from the browser.

Cross-origin navigation and/or loading receives special handling.

When the main frame navigates to a different origin the OnMainFrameChanged callback (2) will be executed with the old and new main frame objects.

When a new sub-frame is loaded in, or an existing sub-frame is navigated to, a different origin from the parent frame, a temporary sub-frame object will first be created in the parent's renderer process. That temporary sub-frame will then be discarded after the real cross-origin sub-frame is created in the new/target renderer process. The client will receive cross-origin navigation callbacks (2) for the transition from the temporary sub-frame to the real sub-frame. The temporary sub-frame will not recieve or execute commands during this transitional period (any sent commands will be discarded).

When a new popup browser is created in a different origin from the parent browser, a temporary main frame object for the popup will first be created in the parent's renderer process. That temporary main frame will then be discarded after the real cross-origin main frame is created in the new/target renderer process. The client will recieve creation and initial navigation callbacks (1) for the temporary main frame, followed by cross- origin navigation callbacks (2) for the transition from the temporary main frame to the real main frame. The temporary main frame may receive and execute commands during this transitional period (any sent commands may be executed, but the behavior is potentially undesirable since they execute in the parent browser's renderer process and not the new/target renderer process).

Callbacks will not be executed for placeholders that may be created during pre-commit navigation for sub-frames that do not yet exist in the renderer process. Placeholders will have ICefFrame.GetIdentifier() == -4.

The functions of this interface will be called on the UI thread unless otherwise indicated.

Record TCefAccessibilityHandler Implement this structure to receive accessibility notification when accessibility events have been registered. The functions of this structure will be called on the UI thread.
Record TCefContextMenuHandler Implement this structure to handle context menu events. The functions of this structure will be called on the UI thread.
Record TCefRunQuickMenuCallback Callback structure used for continuation of custom quick menu display.
Record TCefClient Implement this structure to provide handler implementations.
Record TCefBrowserHost Structure used to represent the browser process aspects of a browser. The functions of this structure can only be called in the browser process. They may be called on any thread in that process unless otherwise indicated in the comments.
Record TCefBrowser Structure used to represent a browser. When used in the browser process the functions of this structure may be called on any thread unless otherwise indicated in the comments. When used in the render process the functions of this structure may only be called on the main thread.
Record TCefResourceBundleHandler Structure used to implement a custom resource bundle structure. See TCefSettings for additional options related to resource bundle loading. The functions of this structure may be called on multiple threads.
Record TCefBrowserProcessHandler Structure used to implement browser process callbacks. The functions of this structure will be called on the browser process main thread unless otherwise indicated.
Record TCefApp Implement this structure to provide handler implementations. Methods will be called by the process and/or thread indicated.
Record TCefServer Structure representing a server that supports HTTP and WebSocket requests. Server capacity is limited and is intended to handle only a small number of simultaneous connections (e.g. for communicating between applications on localhost). The functions of this structure are safe to call from any thread in the brower process unless otherwise indicated.
Record TCefServerHandler Implement this structure to handle HTTP server requests. A new thread will be created for each ICefServer.CreateServer call (the "dedicated server thread"), and the functions of this structure will be called on that thread. It is therefore recommended to use a different ICefServerHandler instance for each ICefServer.CreateServer call to avoid thread safety issues in the ICefServerHandler implementation.
Record TCefDisplay This structure typically, but not always, corresponds to a physical display connected to the system. A fake Display may exist on a headless system, or a Display may correspond to a remote, virtual display. All size and position values are in density independent pixel (DIP) coordinates unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefLayout A Layout handles the sizing of the children of a Panel according to implementation-specific heuristics. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefBoxLayout A Layout manager that arranges child views vertically or horizontally in a side-by-side fashion with spacing around and between the child views. The child views are always sized according to their preferred size. If the host's bounds provide insufficient space, child views will be clamped. Excess space will not be distributed. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefFillLayout A simple Layout that causes the associated Panel's one child to be sized to match the bounds of its parent. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefOverlayController Controller for an overlay that contains a contents View added via ICefWindow.AddOverlayView. Methods exposed by this controller should be called in preference to functions of the same name exposed by the contents View unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefView A View is a rectangle within the views View hierarchy. It is the base structure for all Views. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefViewDelegate Implement this structure to handle view events. All size and position values are in density independent pixels (DIP) unless otherwise indicated. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefTextfield A Textfield supports editing of text. This control is custom rendered with no platform-specific code. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefTextfieldDelegate Implement this structure to handle Textfield events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefScrollView A ScrollView will show horizontal and/or vertical scrollbars when necessary based on the size of the attached content view. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefPanel A Panel is a container in the views hierarchy that can contain other Views as children. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefPanelDelegate Implement this structure to handle Panel events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefBrowserView A View hosting a ICefBrowser instance. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefBrowserViewDelegate Implement this structure to handle BrowserView events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefButton A View representing a button. Depending on the specific type, the button could be implemented by a native control or custom rendered. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefButtonDelegate Implement this structure to handle Button events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefLabelButton LabelButton is a button with optional text and/or icon. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefMenuButton MenuButton is a button with optional text, icon and/or menu marker that shows a menu when clicked with the left mouse button. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefMenuButtonPressedLock MenuButton pressed lock is released when this object is destroyed.
Record TCefMenuButtonDelegate Implement this structure to handle MenuButton events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.
Record TCefWindow A Window is a top-level Window/widget in the Views hierarchy. By default it will have a non-client area with title bar, icon and buttons that supports moving and resizing. All size and position values are in density independent pixels (DIP) unless otherwise indicated. Methods must be called on the browser process UI thread unless otherwise indicated.
Record TCefWindowDelegate Implement this structure to handle window events. The functions of this structure will be called on the browser process UI thread unless otherwise indicated.

Types

PCefStringWide = ˆTCefStringWide;
PCefDictionaryValue = ˆTCefDictionaryValue;
PCefListValue = ˆTCefListValue;
PCefBrowser = ˆTCefBrowser;
PCefValue = ˆTCefValue;
PCefBinaryValue = ˆTCefBinaryValue;
PCefSchemeRegistrar = ˆTCefSchemeRegistrar;
PCefPreferenceRegistrar = ˆTCefPreferenceRegistrar;
PCefPreferenceManager = ˆTCefPreferenceManager;
PCefCommandLine = ˆTCefCommandLine;
PCefCommandHandler = ˆTCefCommandHandler;
PCefBaseRefCounted = ˆTCefBaseRefCounted;
PCefBaseScoped = ˆTCefBaseScoped;
PCefWindowInfo = ˆTCefWindowInfo;
PCefSettings = ˆTCefSettings;
PCefStringUtf8 = ˆTCefStringUtf8;
PCefStringUtf16 = ˆTCefStringUtf16;
PCefStringUserFreeWide = ˆTCefStringUserFreeWide;
PCefStringUserFreeUtf8 = ˆTCefStringUserFreeUtf8;
PCefStringUserFreeUtf16 = ˆTCefStringUserFreeUtf16;
PCefMainArgs = ˆTCefMainArgs;
PCefColor = ˆTCefColor;
PCefBrowserHost = ˆTCefBrowserHost;
PCefClient = ˆTCefClient;
PCefPrintHandler = ˆTCefPrintHandler;
PCefResourceBundleHandler = ˆTCefResourceBundleHandler;
PCefBrowserProcessHandler = ˆTCefBrowserProcessHandler;
PCefContextMenuHandler = ˆTCefContextMenuHandler;
PCefRunQuickMenuCallback = ˆTCefRunQuickMenuCallback;
PCefAccessibilityHandler = ˆTCefAccessibilityHandler;
PCefFrame = ˆTCefFrame;
PCefFrameHandler = ˆTCefFrameHandler;
PCefApp = ˆTCefApp;
PCefServer = ˆTCefServer;
PCefServerHandler = ˆTCefServerHandler;
PCefStringVisitor = ˆTCefStringVisitor;
PCefRequest = ˆTCefRequest;
PCefPostData = ˆTCefPostData;
PCefPostDataElement = ˆTCefPostDataElement;
PPCefPostDataElement = ˆPCefPostDataElement;
PCefv8Context = ˆTCefv8Context;
PCefV8Interceptor = ˆTCefV8Interceptor;
PCefTask = ˆTCefTask;
PCefv8Value = ˆTCefv8Value;
PCefBaseTime = ˆTCefBaseTime;
PCefTime = ˆTCefTime;
PCefV8Exception = ˆTCefV8Exception;
PCefv8ArrayBufferReleaseCallback = ˆTCefv8ArrayBufferReleaseCallback;
PCefv8Handler = ˆTCefv8Handler;
PPCefV8Value = ˆPCefV8ValueArray;
PCefDomVisitor = ˆTCefDomVisitor;
PCefDomDocument = ˆTCefDomDocument;
PCefDomNode = ˆTCefDomNode;
PCefContextMenuParams = ˆTCefContextMenuParams;
PCefMenuModel = ˆTCefMenuModel;
PCefRunContextMenuCallback = ˆTCefRunContextMenuCallback;
PCefDialogHandler = ˆTCefDialogHandler;
PCefFileDialogCallback = ˆTCefFileDialogCallback;
PCefDisplayHandler = ˆTCefDisplayHandler;
PCefDownloadHandler = ˆTCefDownloadHandler;
PCefDownloadItem = ˆTCefDownloadItem;
PCefBeforeDownloadCallback = ˆTCefBeforeDownloadCallback;
PCefDownloadItemCallback = ˆTCefDownloadItemCallback;
PCefDragHandler = ˆTCefDragHandler;
PCefDragData = ˆTCefDragData;
PCefDraggableRegionArray = ˆTCefDraggableRegionArray;
PCefDraggableRegion = ˆTCefDraggableRegion;
PCefRect = ˆTCefRect;
PCefPoint = ˆTCefPoint;
PCefSize = ˆTCefSize;
PCefRectArray = ˆTCefRectArray;
PCefRange = ˆTCefRange;
PCefStreamWriter = ˆTCefStreamWriter;
PCefFindHandler = ˆTCefFindHandler;
PCefFocusHandler = ˆTCefFocusHandler;
PCefJsDialogHandler = ˆTCefJsDialogHandler;
PCefJsDialogCallback = ˆTCefJsDialogCallback;
PCefKeyboardHandler = ˆTCefKeyboardHandler;
PCefKeyEvent = ˆTCefKeyEvent;
PCefLifeSpanHandler = ˆTCefLifeSpanHandler;
PCefGetExtensionResourceCallback = ˆTCefGetExtensionResourceCallback;
PCefExtensionHandler = ˆTCefExtensionHandler;
PCefAudioHandler = ˆTCefAudioHandler;
PCefAudioParameters = ˆTCefAudioParameters;
PCefExtension = ˆTCefExtension;
PCefPopupFeatures = ˆTCefPopupFeatures;
PCefBrowserSettings = ˆTCefBrowserSettings;
PCefLoadHandler = ˆTCefLoadHandler;
PCefRenderHandler = ˆTCefRenderHandler;
PCefScreenInfo = ˆTCefScreenInfo;
PCefRenderProcessHandler = ˆTCefRenderProcessHandler;
PCefCursorInfo = ˆTCefCursorInfo;
PCefThread = ˆTCefThread;
PCefWaitableEvent = ˆTCefWaitableEvent;
PCefV8StackTrace = ˆTCefV8StackTrace;
PCefV8StackFrame = ˆTCefV8StackFrame;
PCefProcessMessage = ˆTCefProcessMessage;
PCefRequestHandler = ˆTCefRequestHandler;
PCefMediaAccessCallback = ˆTCefMediaAccessCallback;
PCefMediaAccessHandler = ˆTCefMediaAccessHandler;
PCefPermissionHandler = ˆTCefPermissionHandler;
PCefSharedMemoryRegion = ˆTCefSharedMemoryRegion;
PCefSharedProcessMessageBuilder = ˆTCefSharedProcessMessageBuilder;
PCefPermissionPromptCallback = ˆTCefPermissionPromptCallback;
PCefResourceSkipCallback = ˆTCefResourceSkipCallback;
PCefResourceReadCallback = ˆTCefResourceReadCallback;
PCefResourceHandler = ˆTCefResourceHandler;
PCefResourceRequestHandler = ˆTCefResourceRequestHandler;
PCefCookieAccessFilter = ˆTCefCookieAccessFilter;
PCefResponse = ˆTCefResponse;
PCefResponseFilter = ˆTCefResponseFilter;
PCefAuthCallback = ˆTCefAuthCallback;
PCefSslInfo = ˆTCefSslInfo;
PCefSSLStatus = ˆTCefSSLStatus;
PCefSelectClientCertificateCallback = ˆTCefSelectClientCertificateCallback;
PCefCallback = ˆTCefCallback;
PCefCookie = ˆTCefCookie;
PCefRequestContext = ˆTCefRequestContext;
PCefRequestContextHandler = ˆTCefRequestContextHandler;
PCefCompletionCallback = ˆTCefCompletionCallback;
PCefCookieManager = ˆTCefCookieManager;
PCefSchemeHandlerFactory = ˆTCefSchemeHandlerFactory;
PCefResolveCallback = ˆTCefResolveCallback;
PCefCookieVisitor = ˆTCefCookieVisitor;
PCefSetCookieCallback = ˆTCefSetCookieCallback;
PCefDeleteCookiesCallback = ˆTCefDeleteCookiesCallback;
PCefRunFileDialogCallback = ˆTCefRunFileDialogCallback;
PCefDownloadImageCallback = ˆTCefDownloadImageCallback;
PCefImage = ˆTCefImage;
PCefPdfPrintSettings = ˆTCefPdfPrintSettings;
PCefPdfPrintCallback = ˆTCefPdfPrintCallback;
PCefNavigationEntryVisitor = ˆTCefNavigationEntryVisitor;
PCefNavigationEntry = ˆTCefNavigationEntry;
PCefMouseEvent = ˆTCefMouseEvent;
PCefTouchEvent = ˆTCefTouchEvent;
PCefTouchHandleState = ˆTCefTouchHandleState;
PCefPrintSettings = ˆTCefPrintSettings;
PCefPrintDialogCallback = ˆTCefPrintDialogCallback;
PCefPrintJobCallback = ˆTCefPrintJobCallback;
PCefUrlParts = ˆTCefUrlParts;
PCefStreamReader = ˆTCefStreamReader;
PCefReadHandler = ˆTCefReadHandler;
PCefWriteHandler = ˆTCefWriteHandler;
PCefV8Accessor = ˆTCefV8Accessor;
PCefXmlReader = ˆTCefXmlReader;
PCefZipReader = ˆTCefZipReader;
PCefUrlRequestClient = ˆTCefUrlRequestClient;
PCefUrlRequest = ˆTCefUrlRequest;
PCefTaskRunner = ˆTCefTaskRunner;
PCefEndTracingCallback = ˆTCefEndTracingCallback;
PCefRequestContextSettings = ˆTCefRequestContextSettings;
PCefResourceBundle = ˆTCefResourceBundle;
PCefMenuModelDelegate = ˆTCefMenuModelDelegate;
PCefInsets = ˆTCefInsets;
PCefCompositionUnderline = ˆTCefCompositionUnderline;
PCefX509CertPrincipal = ˆTCefX509CertPrincipal;
PCefX509Certificate = ˆTCefX509Certificate;
PPCefX509Certificate = ˆPCefX509Certificate;
PCefDisplay = ˆTCefDisplay;
PPCefDisplay = ˆPCefDisplay;
PCefLayout = ˆTCefLayout;
PCefBoxLayout = ˆTCefBoxLayout;
PCefFillLayout = ˆTCefFillLayout;
PCefOverlayController = ˆTCefOverlayController;
PCefView = ˆTCefView;
PCefViewDelegate = ˆTCefViewDelegate;
PCefTextfield = ˆTCefTextfield;
PCefTextfieldDelegate = ˆTCefTextfieldDelegate;
PCefScrollView = ˆTCefScrollView;
PCefPanel = ˆTCefPanel;
PCefPanelDelegate = ˆTCefPanelDelegate;
PCefBrowserView = ˆTCefBrowserView;
PCefBrowserViewDelegate = ˆTCefBrowserViewDelegate;
PCefButton = ˆTCefButton;
PCefButtonDelegate = ˆTCefButtonDelegate;
PCefLabelButton = ˆTCefLabelButton;
PCefMenuButton = ˆTCefMenuButton;
PCefMenuButtonPressedLock = ˆTCefMenuButtonPressedLock;
PCefMenuButtonDelegate = ˆTCefMenuButtonDelegate;
PCefWindow = ˆTCefWindow;
PCefWindowDelegate = ˆTCefWindowDelegate;
PCefBoxLayoutSettings = ˆTCefBoxLayoutSettings;
PCefRegistration = ˆTCefRegistration;
PCefDevToolsMessageObserver = ˆTCefDevToolsMessageObserver;
PCefMediaRouter = ˆTCefMediaRouter;
PCefMediaRoute = ˆTCefMediaRoute;
PPCefMediaRoute = ˆPCefMediaRoute;
PCefMediaRouteCreateCallback = ˆTCefMediaRouteCreateCallback;
PCefMediaObserver = ˆTCefMediaObserver;
PCefMediaSink = ˆTCefMediaSink;
PPCefMediaSink = ˆPCefMediaSink;
PCefMediaSinkDeviceInfoCallback = ˆTCefMediaSinkDeviceInfoCallback;
PCefMediaSource = ˆTCefMediaSource;
PCefMediaSinkDeviceInfo = ˆTCefMediaSinkDeviceInfo;
TCefWindowHandle = type HWND;
TCefCursorHandle = type HCURSOR;
TCefEventHandle = type PMsg;
TCefPlatformThreadId = DWORD;
TCefPlatformThreadHandle = DWORD;
TCefTransitionType = Cardinal;
TCefColor = Cardinal;
TCefErrorCode = Integer;
TCefCertStatus = Integer;
TCefSSLVersion = integer;
TCefStringList = Pointer;
TCefStringMap = Pointer;
TCefStringMultimap = Pointer;
TCefUriUnescapeRule = Integer;
TCefDomEventCategory = Integer;
TCefEventFlags = Cardinal;
TCefDragOperations = Cardinal;
TCefDragOperation = Cardinal;
TCefV8AccessControls = Cardinal;
TCefV8PropertyAttributes = Cardinal;
TCefUrlRequestFlags = Cardinal;
TCefContextMenuTypeFlags = Cardinal;
TCefContextMenuMediaStateFlags = Cardinal;
TCefContextMenuEditStateFlags = Cardinal;
TCefJsonWriterOptions = Cardinal;
TCefSSLContentStatus = Cardinal;
TCefLogSeverity = Cardinal;
TCefFileDialogMode = Cardinal;
TCefDuplexMode = Integer;
TCefSchemeOptions = Integer;
TCefMediaRouterCreateResult = Integer;
TCefCookiePriority = Integer;
TCefTextFieldCommands = Integer;
TCefChromeToolbarType = Integer;
TCefDockingMode = type Integer;
TCefShowState = type Integer;
TCefQuickMenuEditStateFlags = type Integer;
TCefTouchHandleStateFlags = type Integer;
TCefMediaAccessPermissionTypes = type Integer;
TCefPermissionRequestTypes = type Integer;
TCefDownloadInterruptReason = type Integer;
TCefMenuId = type Integer;
TCefLogItems = type Cardinal;
NativeInt = PtrInt;
NativeUInt = PtrUInt;
PNativeInt = ˆNativeInt;
PNativeUInt = ˆNativeUInt;
ustring = type UnicodeString;
rbstring = type AnsiString;
TCefCustomByteArray = array of byte;
LPMEMORYSTATUSEX = ˆTMyMemoryStatusEx;
PPSingle = ˆPSingle;
Char16 = WideChar;
PChar16 = PWideChar;
TCefString = TCefStringUtf16;
PCefString = PCefStringUtf16;
TCefStringUserFreeWide = type TCefStringWide;
TCefStringUserFreeUtf8 = type TCefStringUtf8;
TCefStringUserFreeUtf16 = type TCefStringUtf16;
TCefChar = Char16;
PCefChar = PChar16;
TCefStringUserFree = TCefStringUserFreeUtf16;
PCefStringUserFree = PCefStringUserFreeUtf16;
TCefCloseBrowserAction = (...);
TCefProcessType = (...);
TCefCookiePref = (...);
TCefBrowserNavigation = (...);
TCefAplicationStatus = (...);
TCefUIColorMode = (...);
TCefProxyScheme = (...);
TSimulatedCefKeyEventType = (...);
TCefClearDataStorageTypes = (...);
TCefAutoplayPolicy = (...);
TCefWebRTCHandlingPolicy = (...);
TCefNetLogCaptureMode = (...);
TCefBatterySaverModeState = (...);
TCefHighEfficiencyModeState = (...);
TCEFDialogType = (...);
TCefMediaType = (...);
TCefRectArray = array[0..(High(Integer) div SizeOf(TCefRect))-1] of TCefRect;
TCefRectDynArray = array of TCefRect;
TCefRangeArray = array of TCefRange;
TCefState = (...);
TCefScaleFactor = (...);
TCefValueType = (...);
TCefMediaRouteConnectionState = (...);
TCefMediaSinkIconType = (...);
TCefReferrerPolicy = (...);
TCefPostDataElementType = (...);
TCefResourceType = (...);
TCefDomDocumentType = (...);
TCefDomNodeType = (...);
TCefDomFormControlType = (...);
TCefContextMenuMediaType = (...);
TCefMenuItemType = (...);
TCefFocusSource = (...);
TCefJsDialogType = (...);
TCefKeyEventType = (...);
TCefWindowOpenDisposition = (...);
TCefTextInpuMode = (...);
TCefTouchEeventType = (...);
TCefPointerType = (...);
TCefChannelLayout = (...);
TCefCookieSameSite = (...);
TCefPaintElementType = (...);
TCefCursorType = (...);
TCefNavigationType = (...);
TCefProcessId = (...);
TCefThreadId = (...);
TCefThreadPriority = (...);
TCefMessageLoopType = (...);
TCefCOMInitMode = (...);
TCefMouseButtonType = (...);
TCefReturnValue = (...);
TCefUrlRequestStatus = (...);
TCefTerminationStatus = (...);
TCefPathKey = (...);
TCefStorageType = (...);
TCefResponseFilterStatus = (...);
TCefColorType = (...);
TCefAlphaType = (...);
TCefTextStyle = (...);
TCefMainAxisAlignment = (...);
TCefCrossAxisAlignment = (...);
TCefPdfPrintMarginType = (...);
TCefColorModel = (...);
TCefJsonParserOptions = (...);
TCefXmlEncodingType = (...);
TCefXmlNodeType = (...);
TCefDomEventPhase = (...);
TCefButtonState = (...);
TCefHorizontalAlignment = (...);
TCefMenuAnchorPosition = (...);
TCefMenuColorType = (...);
TCefCompositionUnderlineStyle = (...);
TCefPermissionRequestResult = (...);
TCefPreferencesType = (...);
TCefGestureCommand = (...);
TCefZoomCommand = (...);
TCefTestCertType = (...);
TCefChromePageActionIconType = (...);
TCefChromeToolbarButtonType = (...);
TCefCompositionUnderlineDynArray = array of TCefCompositionUnderline;
TCefBaseTime = type int64;
TCefDraggableRegionArray = array[0..(High(Integer) div SizeOf(TCefDraggableRegion))-1] of TCefDraggableRegion;
TCefContentSettingTypes = (...);
TCefContentSettingValues = (...);
PCefV8ValueArray = array[0..(High(Integer) div SizeOf(Pointer)) - 1] of PCefV8Value;

Description

Types

PCefStringWide = ˆTCefStringWide;

This item has no description.

PCefDictionaryValue = ˆTCefDictionaryValue;

This item has no description.

PCefListValue = ˆTCefListValue;

This item has no description.

PCefBrowser = ˆTCefBrowser;

This item has no description.

PCefValue = ˆTCefValue;

This item has no description.

PCefBinaryValue = ˆTCefBinaryValue;

This item has no description.

PCefSchemeRegistrar = ˆTCefSchemeRegistrar;

This item has no description.

PCefPreferenceRegistrar = ˆTCefPreferenceRegistrar;

This item has no description.

PCefPreferenceManager = ˆTCefPreferenceManager;

This item has no description.

PCefCommandLine = ˆTCefCommandLine;

This item has no description.

PCefCommandHandler = ˆTCefCommandHandler;

This item has no description.

PCefBaseRefCounted = ˆTCefBaseRefCounted;

This item has no description.

PCefBaseScoped = ˆTCefBaseScoped;

This item has no description.

PCefWindowInfo = ˆTCefWindowInfo;

This item has no description.

PCefSettings = ˆTCefSettings;

This item has no description.

PCefStringUtf8 = ˆTCefStringUtf8;

This item has no description.

PCefStringUtf16 = ˆTCefStringUtf16;

This item has no description.

PCefStringUserFreeWide = ˆTCefStringUserFreeWide;

This item has no description.

PCefStringUserFreeUtf8 = ˆTCefStringUserFreeUtf8;

This item has no description.

PCefStringUserFreeUtf16 = ˆTCefStringUserFreeUtf16;

This item has no description.

PCefMainArgs = ˆTCefMainArgs;

This item has no description.

PCefColor = ˆTCefColor;

This item has no description.

PCefBrowserHost = ˆTCefBrowserHost;

This item has no description.

PCefClient = ˆTCefClient;

This item has no description.

PCefPrintHandler = ˆTCefPrintHandler;

This item has no description.

PCefResourceBundleHandler = ˆTCefResourceBundleHandler;

This item has no description.

PCefBrowserProcessHandler = ˆTCefBrowserProcessHandler;

This item has no description.

PCefContextMenuHandler = ˆTCefContextMenuHandler;

This item has no description.

PCefRunQuickMenuCallback = ˆTCefRunQuickMenuCallback;

This item has no description.

PCefAccessibilityHandler = ˆTCefAccessibilityHandler;

This item has no description.

PCefFrame = ˆTCefFrame;

This item has no description.

PCefFrameHandler = ˆTCefFrameHandler;

This item has no description.

PCefApp = ˆTCefApp;

This item has no description.

PCefServer = ˆTCefServer;

This item has no description.

PCefServerHandler = ˆTCefServerHandler;

This item has no description.

PCefStringVisitor = ˆTCefStringVisitor;

This item has no description.

PCefRequest = ˆTCefRequest;

This item has no description.

PCefPostData = ˆTCefPostData;

This item has no description.

PCefPostDataElement = ˆTCefPostDataElement;

This item has no description.

PPCefPostDataElement = ˆPCefPostDataElement;

This item has no description.

PCefv8Context = ˆTCefv8Context;

This item has no description.

PCefV8Interceptor = ˆTCefV8Interceptor;

This item has no description.

PCefTask = ˆTCefTask;

This item has no description.

PCefv8Value = ˆTCefv8Value;

This item has no description.

PCefBaseTime = ˆTCefBaseTime;

This item has no description.

PCefTime = ˆTCefTime;

This item has no description.

PCefV8Exception = ˆTCefV8Exception;

This item has no description.

PCefv8ArrayBufferReleaseCallback = ˆTCefv8ArrayBufferReleaseCallback;

This item has no description.

PCefv8Handler = ˆTCefv8Handler;

This item has no description.

PPCefV8Value = ˆPCefV8ValueArray;

This item has no description.

PCefDomVisitor = ˆTCefDomVisitor;

This item has no description.

PCefDomDocument = ˆTCefDomDocument;

This item has no description.

PCefDomNode = ˆTCefDomNode;

This item has no description.

PCefContextMenuParams = ˆTCefContextMenuParams;

This item has no description.

PCefMenuModel = ˆTCefMenuModel;

This item has no description.

PCefRunContextMenuCallback = ˆTCefRunContextMenuCallback;

This item has no description.

PCefDialogHandler = ˆTCefDialogHandler;

This item has no description.

PCefFileDialogCallback = ˆTCefFileDialogCallback;

This item has no description.

PCefDisplayHandler = ˆTCefDisplayHandler;

This item has no description.

PCefDownloadHandler = ˆTCefDownloadHandler;

This item has no description.

PCefDownloadItem = ˆTCefDownloadItem;

This item has no description.

PCefBeforeDownloadCallback = ˆTCefBeforeDownloadCallback;

This item has no description.

PCefDownloadItemCallback = ˆTCefDownloadItemCallback;

This item has no description.

PCefDragHandler = ˆTCefDragHandler;

This item has no description.

PCefDragData = ˆTCefDragData;

This item has no description.

PCefDraggableRegionArray = ˆTCefDraggableRegionArray;

This item has no description.

PCefDraggableRegion = ˆTCefDraggableRegion;

This item has no description.

PCefRect = ˆTCefRect;

This item has no description.

PCefPoint = ˆTCefPoint;

This item has no description.

PCefSize = ˆTCefSize;

This item has no description.

PCefRectArray = ˆTCefRectArray;

This item has no description.

PCefRange = ˆTCefRange;

This item has no description.

PCefStreamWriter = ˆTCefStreamWriter;

This item has no description.

PCefFindHandler = ˆTCefFindHandler;

This item has no description.

PCefFocusHandler = ˆTCefFocusHandler;

This item has no description.

PCefJsDialogHandler = ˆTCefJsDialogHandler;

This item has no description.

PCefJsDialogCallback = ˆTCefJsDialogCallback;

This item has no description.

PCefKeyboardHandler = ˆTCefKeyboardHandler;

This item has no description.

PCefKeyEvent = ˆTCefKeyEvent;

This item has no description.

PCefLifeSpanHandler = ˆTCefLifeSpanHandler;

This item has no description.

PCefGetExtensionResourceCallback = ˆTCefGetExtensionResourceCallback;

This item has no description.

PCefExtensionHandler = ˆTCefExtensionHandler;

This item has no description.

PCefAudioHandler = ˆTCefAudioHandler;

This item has no description.

PCefAudioParameters = ˆTCefAudioParameters;

This item has no description.

PCefExtension = ˆTCefExtension;

This item has no description.

PCefPopupFeatures = ˆTCefPopupFeatures;

This item has no description.

PCefBrowserSettings = ˆTCefBrowserSettings;

This item has no description.

PCefLoadHandler = ˆTCefLoadHandler;

This item has no description.

PCefRenderHandler = ˆTCefRenderHandler;

This item has no description.

PCefScreenInfo = ˆTCefScreenInfo;

This item has no description.

PCefRenderProcessHandler = ˆTCefRenderProcessHandler;

This item has no description.

PCefCursorInfo = ˆTCefCursorInfo;

This item has no description.

PCefThread = ˆTCefThread;

This item has no description.

PCefWaitableEvent = ˆTCefWaitableEvent;

This item has no description.

PCefV8StackTrace = ˆTCefV8StackTrace;

This item has no description.

PCefV8StackFrame = ˆTCefV8StackFrame;

This item has no description.

PCefProcessMessage = ˆTCefProcessMessage;

This item has no description.

PCefRequestHandler = ˆTCefRequestHandler;

This item has no description.

PCefMediaAccessCallback = ˆTCefMediaAccessCallback;

This item has no description.

PCefMediaAccessHandler = ˆTCefMediaAccessHandler;

This item has no description.

PCefPermissionHandler = ˆTCefPermissionHandler;

This item has no description.

PCefSharedMemoryRegion = ˆTCefSharedMemoryRegion;

This item has no description.

PCefSharedProcessMessageBuilder = ˆTCefSharedProcessMessageBuilder;

This item has no description.

PCefPermissionPromptCallback = ˆTCefPermissionPromptCallback;

This item has no description.

PCefResourceSkipCallback = ˆTCefResourceSkipCallback;

This item has no description.

PCefResourceReadCallback = ˆTCefResourceReadCallback;

This item has no description.

PCefResourceHandler = ˆTCefResourceHandler;

This item has no description.

PCefResourceRequestHandler = ˆTCefResourceRequestHandler;

This item has no description.

PCefCookieAccessFilter = ˆTCefCookieAccessFilter;

This item has no description.

PCefResponse = ˆTCefResponse;

This item has no description.

PCefResponseFilter = ˆTCefResponseFilter;

This item has no description.

PCefAuthCallback = ˆTCefAuthCallback;

This item has no description.

PCefSslInfo = ˆTCefSslInfo;

This item has no description.

PCefSSLStatus = ˆTCefSSLStatus;

This item has no description.

PCefSelectClientCertificateCallback = ˆTCefSelectClientCertificateCallback;

This item has no description.

PCefCallback = ˆTCefCallback;

This item has no description.

PCefCookie = ˆTCefCookie;

This item has no description.

PCefRequestContext = ˆTCefRequestContext;

This item has no description.

PCefRequestContextHandler = ˆTCefRequestContextHandler;

This item has no description.

PCefCompletionCallback = ˆTCefCompletionCallback;

This item has no description.

PCefCookieManager = ˆTCefCookieManager;

This item has no description.

PCefSchemeHandlerFactory = ˆTCefSchemeHandlerFactory;

This item has no description.

PCefResolveCallback = ˆTCefResolveCallback;

This item has no description.

PCefCookieVisitor = ˆTCefCookieVisitor;

This item has no description.

PCefSetCookieCallback = ˆTCefSetCookieCallback;

This item has no description.

PCefDeleteCookiesCallback = ˆTCefDeleteCookiesCallback;

This item has no description.

PCefRunFileDialogCallback = ˆTCefRunFileDialogCallback;

This item has no description.

PCefDownloadImageCallback = ˆTCefDownloadImageCallback;

This item has no description.

PCefImage = ˆTCefImage;

This item has no description.

PCefPdfPrintSettings = ˆTCefPdfPrintSettings;

This item has no description.

PCefPdfPrintCallback = ˆTCefPdfPrintCallback;

This item has no description.

PCefNavigationEntryVisitor = ˆTCefNavigationEntryVisitor;

This item has no description.

PCefNavigationEntry = ˆTCefNavigationEntry;

This item has no description.

PCefMouseEvent = ˆTCefMouseEvent;

This item has no description.

PCefTouchEvent = ˆTCefTouchEvent;

This item has no description.

PCefTouchHandleState = ˆTCefTouchHandleState;

This item has no description.

PCefPrintSettings = ˆTCefPrintSettings;

This item has no description.

PCefPrintDialogCallback = ˆTCefPrintDialogCallback;

This item has no description.

PCefPrintJobCallback = ˆTCefPrintJobCallback;

This item has no description.

PCefUrlParts = ˆTCefUrlParts;

This item has no description.

PCefStreamReader = ˆTCefStreamReader;

This item has no description.

PCefReadHandler = ˆTCefReadHandler;

This item has no description.

PCefWriteHandler = ˆTCefWriteHandler;

This item has no description.

PCefV8Accessor = ˆTCefV8Accessor;

This item has no description.

PCefXmlReader = ˆTCefXmlReader;

This item has no description.

PCefZipReader = ˆTCefZipReader;

This item has no description.

PCefUrlRequestClient = ˆTCefUrlRequestClient;

This item has no description.

PCefUrlRequest = ˆTCefUrlRequest;

This item has no description.

PCefTaskRunner = ˆTCefTaskRunner;

This item has no description.

PCefEndTracingCallback = ˆTCefEndTracingCallback;

This item has no description.

PCefRequestContextSettings = ˆTCefRequestContextSettings;

This item has no description.

PCefResourceBundle = ˆTCefResourceBundle;

This item has no description.

PCefMenuModelDelegate = ˆTCefMenuModelDelegate;

This item has no description.

PCefInsets = ˆTCefInsets;

This item has no description.

PCefCompositionUnderline = ˆTCefCompositionUnderline;

This item has no description.

PCefX509CertPrincipal = ˆTCefX509CertPrincipal;

This item has no description.

PCefX509Certificate = ˆTCefX509Certificate;

This item has no description.

PPCefX509Certificate = ˆPCefX509Certificate;

This item has no description.

PCefDisplay = ˆTCefDisplay;

This item has no description.

PPCefDisplay = ˆPCefDisplay;

This item has no description.

PCefLayout = ˆTCefLayout;

This item has no description.

PCefBoxLayout = ˆTCefBoxLayout;

This item has no description.

PCefFillLayout = ˆTCefFillLayout;

This item has no description.

PCefOverlayController = ˆTCefOverlayController;

This item has no description.

PCefView = ˆTCefView;

This item has no description.

PCefViewDelegate = ˆTCefViewDelegate;

This item has no description.

PCefTextfield = ˆTCefTextfield;

This item has no description.

PCefTextfieldDelegate = ˆTCefTextfieldDelegate;

This item has no description.

PCefScrollView = ˆTCefScrollView;

This item has no description.

PCefPanel = ˆTCefPanel;

This item has no description.

PCefPanelDelegate = ˆTCefPanelDelegate;

This item has no description.

PCefBrowserView = ˆTCefBrowserView;

This item has no description.

PCefBrowserViewDelegate = ˆTCefBrowserViewDelegate;

This item has no description.

PCefButton = ˆTCefButton;

This item has no description.

PCefButtonDelegate = ˆTCefButtonDelegate;

This item has no description.

PCefLabelButton = ˆTCefLabelButton;

This item has no description.

PCefMenuButton = ˆTCefMenuButton;

This item has no description.

PCefMenuButtonPressedLock = ˆTCefMenuButtonPressedLock;

This item has no description.

PCefMenuButtonDelegate = ˆTCefMenuButtonDelegate;

This item has no description.

PCefWindow = ˆTCefWindow;

This item has no description.

PCefWindowDelegate = ˆTCefWindowDelegate;

This item has no description.

PCefBoxLayoutSettings = ˆTCefBoxLayoutSettings;

This item has no description.

PCefRegistration = ˆTCefRegistration;

This item has no description.

PCefDevToolsMessageObserver = ˆTCefDevToolsMessageObserver;

This item has no description.

PCefMediaRouter = ˆTCefMediaRouter;

This item has no description.

PCefMediaRoute = ˆTCefMediaRoute;

This item has no description.

PPCefMediaRoute = ˆPCefMediaRoute;

This item has no description.

PCefMediaRouteCreateCallback = ˆTCefMediaRouteCreateCallback;

This item has no description.

PCefMediaObserver = ˆTCefMediaObserver;

This item has no description.

PCefMediaSink = ˆTCefMediaSink;

This item has no description.

PPCefMediaSink = ˆPCefMediaSink;

This item has no description.

PCefMediaSinkDeviceInfoCallback = ˆTCefMediaSinkDeviceInfoCallback;

This item has no description.

PCefMediaSource = ˆTCefMediaSource;

This item has no description.

PCefMediaSinkDeviceInfo = ˆTCefMediaSinkDeviceInfo;

This item has no description.

TCefWindowHandle = type HWND;

Native Window handle.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_window_handle_t))

TCefCursorHandle = type HCURSOR;

Native Cursor handle.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_cursor_handle_t))

TCefEventHandle = type PMsg;

Native event handle.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_event_handle_t))

TCefPlatformThreadId = DWORD;

Platform thread ID.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_id_t))

TCefPlatformThreadHandle = DWORD;

Platform thread handle.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_handle_t))

TCefTransitionType = Cardinal;

Transition type for a request. Made up of one source value and 0 or more qualifiers.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_transition_type_t))

TCefColor = Cardinal;

32-bit ARGB color value, not premultiplied. The color components are always in a known order. Equivalent to the SkColor type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_color_t))

TCefErrorCode = Integer;

Supported error code values.

Ranges:
    0- 99 System related errors
  100-199 Connection related errors
  200-299 Certificate errors
  300-399 HTTP errors
  400-499 Cache errors
  500-599 ?
  600-699 FTP errors
  700-799 Certificate manager errors
  800-899 DNS resolver errors

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_errorcode_t))

<see href="https://chromium.googlesource.com/chromium/src/+/master/net/base/net_error_list.h">For the complete list of error values see include/base/internal/cef_net_error_list.h which includes this Chromium source file /net/base/net_error_list.h)

TCefCertStatus = Integer;

Supported certificate status code values. See net\cert\cert_status_flags.h for more information. CERT_STATUS_NONE is new in CEF because we use an enum while cert_status_flags.h uses a typedef and static const variables.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cert_status_t))

TCefSSLVersion = integer;

Supported SSL version values.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_version_t))

<see href="https://source.chromium.org/chromium/chromium/src/+/main:net/ssl/ssl_connection_status_flags.h">See net/ssl/ssl_connection_status_flags.h for more information.)

TCefStringList = Pointer;

CEF string maps are a set of key/value string pairs.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_list.h">CEF source file: /include/internal/cef_string_list.h (cef_string_list_t))

TCefStringMap = Pointer;

CEF string maps are a set of key/value string pairs.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_map.h">CEF source file: /include/internal/cef_string_map.h (cef_string_map_t))

TCefStringMultimap = Pointer;

CEF string multimaps are a set of key/value string pairs. More than one value can be assigned to a single key.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_multimap.h">CEF source file: /include/internal/cef_string_multimap.h (cef_string_multimap_t))

TCefUriUnescapeRule = Integer;

URI unescape rules passed to CefURIDecode().

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_uri_unescape_rule_t))

TCefDomEventCategory = Integer;

DOM event category flags.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_event_category_t))

TCefEventFlags = Cardinal;

Supported event bit flags.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_event_flags_t))

TCefDragOperations = Cardinal;

"Verb" of a drag-and-drop operation as negotiated between the source and destination. These constants match their equivalents in WebCore's DragActions.h and should not be renumbered.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_drag_operations_mask_t))

TCefDragOperation = Cardinal;

This item has no description.

TCefV8AccessControls = Cardinal;

V8 access control values.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_accesscontrol_t))

TCefV8PropertyAttributes = Cardinal;

V8 property attribute values.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_propertyattribute_t))

TCefUrlRequestFlags = Cardinal;

Flags used to customize the behavior of CefURLRequest.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_urlrequest_flags_t))

TCefContextMenuTypeFlags = Cardinal;

Supported context menu type flags.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_type_flags_t))

TCefContextMenuMediaStateFlags = Cardinal;

Supported context menu media state bit flags. These constants match their equivalents in Chromium's ContextMenuData::MediaFlags and should not be renumbered.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_media_state_flags_t))

TCefContextMenuEditStateFlags = Cardinal;

Supported context menu edit state bit flags. These constants match their equivalents in Chromium's ContextMenuDataEditFlags and should not be renumbered.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_edit_state_flags_t))

TCefJsonWriterOptions = Cardinal;

Options that can be passed to CefWriteJSON.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_json_writer_options_t))

TCefSSLContentStatus = Cardinal;

Supported SSL content status flags. See content/public/common/ssl_status.h for more information.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_content_status_t))

TCefLogSeverity = Cardinal;

Log severity levels.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_log_severity_t))

TCefFileDialogMode = Cardinal;

Supported file dialog modes.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_file_dialog_mode_t))

TCefDuplexMode = Integer;

Print job duplex mode values.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_duplex_mode_t))

TCefSchemeOptions = Integer;

Configuration options for registering a custom scheme. These values are used when calling AddCustomScheme.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_scheme_options_t))

TCefMediaRouterCreateResult = Integer;

Result codes for ICefMediaRouter.CreateRoute. Should be kept in sync with Chromium's media_router::mojom::RouteRequestResultCode type.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_route_create_result_t))

TCefCookiePriority = Integer;

Cookie priority values.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cookie_priority_t))

TCefTextFieldCommands = Integer;

Represents commands available to TextField.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_text_field_commands_t))

TCefChromeToolbarType = Integer;

Chrome toolbar types.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_chrome_toolbar_type_t))

TCefDockingMode = type Integer;

Docking modes supported by ICefWindow.AddOverlay.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_docking_mode_t))

TCefShowState = type Integer;

Show states supported by ICefWindowDelegate.GetInitialShowState.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_show_state_t))

TCefQuickMenuEditStateFlags = type Integer;

Supported quick menu state bit flags.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_quick_menu_edit_state_flags_t))

TCefTouchHandleStateFlags = type Integer;

Values indicating what state of the touch handle is set.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_touch_handle_state_flags_t))

TCefMediaAccessPermissionTypes = type Integer;

Media access permissions used by OnRequestMediaAccessPermission.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_access_permission_types_t))

TCefPermissionRequestTypes = type Integer;

Permission types used with OnShowPermissionPrompt. Some types are platform-specific or only supported with the Chrome runtime. Should be kept in sync with Chromium's permissions::RequestType type.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_permission_request_types_t))

TCefDownloadInterruptReason = type Integer;

Download interrupt reasons. Should be kept in sync with Chromium's download::DownloadInterruptReason type.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_download_interrupt_reason_t))

TCefMenuId = type Integer;

Supported menu IDs. Non-English translations can be provided for the IDS_MENU_* strings in ICefResourceBundleHandler.GetLocalizedString().

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_menu_id_t))

TCefLogItems = type Cardinal;

Log items prepended to each log line.

See the uCEFConstants unit for all possible values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_log_items_t))

NativeInt = PtrInt;

This item has no description.

NativeUInt = PtrUInt;

This item has no description.

PNativeInt = ˆNativeInt;

This item has no description.

PNativeUInt = ˆNativeUInt;

This item has no description.

ustring = type UnicodeString;

String type used by CEF. ustring was created to use the same type in Delphi and Lazarus.

rbstring = type AnsiString;

This item has no description.

TCefCustomByteArray = array of byte;

Array of byte. Needed only for backwards compatibility with old Delphi versions.

LPMEMORYSTATUSEX = ˆTMyMemoryStatusEx;

This item has no description.

PPSingle = ˆPSingle;

This item has no description.

Char16 = WideChar;

This item has no description.

PChar16 = PWideChar;

This item has no description.

TCefString = TCefStringUtf16;

String record used by the CEF C API. The CEF interface is built with the UTF16 string type as the default.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string.h">CEF source file: /include/internal/cef_string.h (cef_string_t))

PCefString = PCefStringUtf16;

This item has no description.

TCefStringUserFreeWide = type TCefStringWide;

This item has no description.

TCefStringUserFreeUtf8 = type TCefStringUtf8;

This item has no description.

TCefStringUserFreeUtf16 = type TCefStringUtf16;

This item has no description.

TCefChar = Char16;

This item has no description.

PCefChar = PChar16;

This item has no description.

TCefStringUserFree = TCefStringUserFreeUtf16;

This item has no description.

PCefStringUserFree = PCefStringUserFreeUtf16;

This item has no description.

TCefCloseBrowserAction = (...);

Action taken after the TChromium.Onclose event.

cbaCancel : stop closing the browser.

cbaClose : continue closing the browser.

cbaDelay : stop closing the browser momentarily. Used when the application needs to execute some custom processes before closing the browser. This is usually needed to destroy a TCEFWindowParent in the main thread before closing the browser.

Values
  • cbaClose
  • cbaDelay
  • cbaCancel
TCefProcessType = (...);

Sub-process types of Chromium.

Values
  • ptBrowser
  • ptRenderer
  • ptZygote
  • ptGPU
  • ptUtility
  • ptBroker
  • ptCrashpad
  • ptOther
TCefCookiePref = (...);

Used in TChromium preferences to allow or block cookies.

Values
  • cpDefault
  • cpAllow
  • cpBlock
TCefBrowserNavigation = (...);

Used by TCefBrowserNavigationTask to navigate in the right CEF thread.

Values
  • bnBack
  • bnForward
  • bnReload
  • bnReloadIgnoreCache
  • bnStopLoad
TCefAplicationStatus = (...);

Status of TCefAplicationCore.

Values
  • asLoading
  • asLoaded
  • asInitialized
  • asShuttingDown
  • asUnloaded
  • asErrorMissingFiles
  • asErrorDLLVersion
  • asErrorWindowsVersion
  • asErrorLoadingLibrary
  • asErrorInitializingLibrary
  • asErrorExecutingProcess
TCefUIColorMode = (...);

Color mode in UI for platforms that support it.

Values
  • uicmSystemDefault: System default.
  • uicmForceLight: Forces light color mode in UI for platforms that support it.
  • uicmForceDark: Forces dark color mode in UI for platforms that support it.
TCefProxyScheme = (...);

Supported proxy schemes in Chromium.

Values
  • psHTTP
  • psSOCKS4
  • psSOCKS5
TSimulatedCefKeyEventType = (...);

Event type used by TChromiumCore.SimulateKeyEvent

Values
  • ketKeyDown
  • ketKeyUp
  • ketRawKeyDown
  • ketChar
TCefClearDataStorageTypes = (...);

Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin.

Values
  • cdstAppCache
  • cdstCookies
  • cdstFileSystems
  • cdstIndexeddb
  • cdstLocalStorage
  • cdstShaderCache
  • cdstWebsql
  • cdstServiceWorkers
  • cdstCacheStorage
  • cdstAll
TCefAutoplayPolicy = (...);

Autoplay policy types used by TCefApplicationCore.AutoplayPolicy. See the –autoplay-policy switch.

Values
  • appDefault
  • appDocumentUserActivationRequired: Autoplay policy that requires a document user activation.
  • appNoUserGestureRequired: Autoplay policy that does not require any user gesture.
  • appUserGestureRequired: Autoplay policy to require a user gesture in order to play.
TCefWebRTCHandlingPolicy = (...);

WebRTC handling policy types used by TChromiumCore.WebRTCIPHandlingPolicy.

Values
  • hpDefault: WebRTC will use all available interfaces when searching for the best path.
  • hpDefaultPublicAndPrivateInterfaces: WebRTC will only use the interface connecting to the public Internet, but may connect using private IP addresses.
  • hpDefaultPublicInterfaceOnly: WebRTC will only use the interface connecting to the public Internet, and will not connect using private IP addresses.
  • hpDisableNonProxiedUDP: WebRTC will use TCP on the public-facing interface, and will only use UDP if supported by a configured proxy.
TCefNetLogCaptureMode = (...);

Values used by the –net-log-capture-mode command line switch. Sets the granularity of events to capture in the network log.

<see href="https://source.chromium.org/chromium/chromium/src/+/main:content/browser/network_service_instance_impl.cc">network_service_instance_impl.cc)

<see href="https://source.chromium.org/chromium/chromium/src/+/main:net/log/net_log_capture_mode.h">net_log_capture_mode.h)

Values
  • nlcmDefault:

    Default logging level, which is expected to be light-weight and does best-effort stripping of privacy/security sensitive data.

    * Includes most HTTP request/response headers, but strips cookies and
      auth.
    * Does not include the full bytes read/written to sockets.

  • nlcmIncludeSensitive:

    Logging level that includes everything from kDefault, plus sensitive data that it may have strippped.

    * Includes cookies and authentication headers.
    * Does not include the full bytes read/written to sockets.

  • nlcmEverything:

    Logging level that includes everything that is possible to be logged.

    * Includes the actual bytes read/written to sockets
    * Will result in large log files.

TCefBatterySaverModeState = (...);

Values used by the battery saver mode state preference.

<see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h)

Values
  • bsmsDisabled = 0
  • bsmsEnabledBelowThreshold = 1
  • bsmsEnabledOnBattery = 2
  • bsmsEnabled = 3
  • bsmsDefault = 4: Custom value used to update the preferences only when there's a non-default value.
TCefHighEfficiencyModeState = (...);

Values used by the high efficiency mode state preference.

<see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h)

Values
  • kDisabled = 0
  • kEnabled = 1
  • kEnabledOnTimer = 2
  • kDefault = 3: Custom value used to update the preferences only when there's a non-default value.
TCEFDialogType = (...);

Used by TCEFFileDialogInfo.

Values
  • dtOpen
  • dtOpenMultiple
  • dtOpenFolder
  • dtSave
TCefMediaType = (...);

Used by TCefMediaSinkInfo and TCefMediaSourceInfo.

Values
  • mtCast
  • mtDial
  • mtUnknown
TCefRectArray = array[0..(High(Integer) div SizeOf(TCefRect))-1] of TCefRect;

This item has no description.

TCefRectDynArray = array of TCefRect;

This item has no description.

TCefRangeArray = array of TCefRange;

This item has no description.

TCefState = (...);

Represents the state of a setting.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_state_t))

Values
  • STATE_DEFAULT = 0: Use the default state for the setting.
  • STATE_ENABLED: Enable or allow the setting.
  • STATE_DISABLED: Disable or disallow the setting.
TCefScaleFactor = (...);

Supported UI scale factors for the platform. SCALE_FACTOR_NONE is used for density independent resources such as string, html/js files or an image that can be used for any scale factors (such as wallpapers).

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_scale_factor_t))

Values
  • SCALE_FACTOR_NONE = 0
  • SCALE_FACTOR_100P
  • SCALE_FACTOR_125P
  • SCALE_FACTOR_133P
  • SCALE_FACTOR_140P
  • SCALE_FACTOR_150P
  • SCALE_FACTOR_180P
  • SCALE_FACTOR_200P
  • SCALE_FACTOR_250P
  • SCALE_FACTOR_300P
TCefValueType = (...);

Supported value types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_value_type_t))

Values
  • VTYPE_INVALID = 0
  • VTYPE_NULL
  • VTYPE_BOOL
  • VTYPE_INT
  • VTYPE_DOUBLE
  • VTYPE_STRING
  • VTYPE_BINARY
  • VTYPE_DICTIONARY
  • VTYPE_LIST
TCefMediaRouteConnectionState = (...);

Connection state for a MediaRoute object.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_route_connection_state_t))

Values
  • CEF_MRCS_UNKNOWN
  • CEF_MRCS_CONNECTING
  • CEF_MRCS_CONNECTED
  • CEF_MRCS_CLOSED
  • CEF_MRCS_TERMINATED
TCefMediaSinkIconType = (...);

Icon types for a MediaSink object. Should be kept in sync with Chromium's media_router::SinkIconType type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_sink_icon_type_t))

Values
  • CEF_MSIT_CAST
  • CEF_MSIT_CAST_AUDIO_GROUP
  • CEF_MSIT_CAST_AUDIO
  • CEF_MSIT_MEETING
  • CEF_MSIT_HANGOUT
  • CEF_MSIT_EDUCATION
  • CEF_MSIT_WIRED_DISPLAY
  • CEF_MSIT_GENERIC
  • CEF_MSIT_TOTAL_COUNT: The total number of values.
TCefReferrerPolicy = (...);

Policy for how the Referrer HTTP header value will be sent during navigation. If the `–no-referrers` command-line flag is specified then the policy value will be ignored and the Referrer value will never be sent. Must be kept synchronized with net::URLRequest::ReferrerPolicy from Chromium.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_referrer_policy_t))

Values
  • REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE: Clear the referrer header if the header value is HTTPS but the request destination is HTTP. This is the default behavior. It has the same value as REFERRER_POLICY_DEFAULT.
  • REFERRER_POLICY_REDUCE_REFERRER_GRANULARITY_ON_TRANSITION_CROSS_ORIGIN: A slight variant on CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE: If the request destination is HTTP, an HTTPS referrer will be cleared. If the request's destination is cross-origin with the referrer (but does not downgrade), the referrer's granularity will be stripped down to an origin rather than a full URL. Same-origin requests will send the full referrer.
  • REFERRER_POLICY_ORIGIN_ONLY_ON_TRANSITION_CROSS_ORIGIN: Strip the referrer down to an origin when the origin of the referrer is different from the destination's origin.
  • REFERRER_POLICY_NEVER_CLEAR_REFERRER: Never change the referrer.
  • REFERRER_POLICY_ORIGIN: Strip the referrer down to the origin regardless of the redirect location.
  • REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_CROSS_ORIGIN: Clear the referrer when the request's referrer is cross-origin with the request's destination.
  • REFERRER_POLICY_ORIGIN_CLEAR_ON_TRANSITION_FROM_SECURE_TO_INSECURE: Strip the referrer down to the origin, but clear it entirely if the referrer value is HTTPS and the destination is HTTP.
  • REFERRER_POLICY_NO_REFERRER: Always clear the referrer regardless of the request destination. It has the same value as REFERRER_POLICY_LAST_VALUE
TCefPostDataElementType = (...);

Post data elements may represent either bytes or files.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_postdataelement_type_t))

Values
  • PDE_TYPE_EMPTY = 0
  • PDE_TYPE_BYTES
  • PDE_TYPE_FILE
TCefResourceType = (...);

Resource type for a request. These constants match their equivalents in Chromium's ResourceType and should not be renumbered.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_resource_type_t))

Values
  • RT_MAIN_FRAME: Top level page.
  • RT_SUB_FRAME: Frame or iframe.
  • RT_STYLESHEET: CSS stylesheet.
  • RT_SCRIPT: External script.
  • RT_IMAGE: Image (jpg/gif/png/etc).
  • RT_FONT_RESOURCE: Font.
  • RT_SUB_RESOURCE: Some other subresource. This is the default type if the actual type is unknown.
  • RT_OBJECT: Object (or embed) tag for a plugin, or a resource that a plugin requested.
  • RT_MEDIA: Media resource.
  • RT_WORKER: Main resource of a dedicated worker.
  • RT_SHARED_WORKER: Main resource of a shared worker.
  • RT_PREFETCH: Explicitly requested prefetch.
  • RT_FAVICON: Favicon.
  • RT_XHR: XMLHttpRequest.
  • RT_PING: A request for a "<ping>".
  • RT_SERVICE_WORKER: Main resource of a service worker.
  • RT_CSP_REPORT: A report of Content Security Policy violations.
  • RT_PLUGIN_RESOURCE: A resource that a plugin requested.
  • RT_EMPTY_FILLER_TYPE_DO_NOT_USE: This type doesn't exist in CEF and it's here just to fill this position.
  • RT_NAVIGATION_PRELOAD_MAIN_FRAME: A main-frame service worker navigation preload request.
  • RT_NAVIGATION_PRELOAD_SUB_FRAME: A sub-frame service worker navigation preload request.
TCefDomDocumentType = (...);

DOM document types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_document_type_t))

Values
  • DOM_DOCUMENT_TYPE_UNKNOWN = 0
  • DOM_DOCUMENT_TYPE_HTML
  • DOM_DOCUMENT_TYPE_XHTML
  • DOM_DOCUMENT_TYPE_PLUGIN
TCefDomNodeType = (...);

DOM node types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_node_type_t))

Values
  • DOM_NODE_TYPE_UNSUPPORTED = 0
  • DOM_NODE_TYPE_ELEMENT
  • DOM_NODE_TYPE_ATTRIBUTE
  • DOM_NODE_TYPE_TEXT
  • DOM_NODE_TYPE_CDATA_SECTION
  • DOM_NODE_TYPE_PROCESSING_INSTRUCTIONS
  • DOM_NODE_TYPE_COMMENT
  • DOM_NODE_TYPE_DOCUMENT
  • DOM_NODE_TYPE_DOCUMENT_TYPE
  • DOM_NODE_TYPE_DOCUMENT_FRAGMENT
TCefDomFormControlType = (...);

DOM form control types. Should be kept in sync with Chromium's blink::mojom::FormControlType type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_form_control_type_t))

Values
  • DOM_FORM_CONTROL_TYPE_UNSUPPORTED = 0
  • DOM_FORM_CONTROL_TYPE_BUTTON_BUTTON
  • DOM_FORM_CONTROL_TYPE_BUTTON_SUBMIT
  • DOM_FORM_CONTROL_TYPE_BUTTON_RESET
  • DOM_FORM_CONTROL_TYPE_BUTTON_SELECT_LIST
  • DOM_FORM_CONTROL_TYPE_FIELDSET
  • DOM_FORM_CONTROL_TYPE_INPUT_BUTTON
  • DOM_FORM_CONTROL_TYPE_INPUT_CHECKBOX
  • DOM_FORM_CONTROL_TYPE_INPUT_COLOR
  • DOM_FORM_CONTROL_TYPE_INPUT_DATE
  • DOM_FORM_CONTROL_TYPE_INPUT_DATETIME_LOCAL
  • DOM_FORM_CONTROL_TYPE_INPUT_EMAIL
  • DOM_FORM_CONTROL_TYPE_INPUT_FILE
  • DOM_FORM_CONTROL_TYPE_INPUT_HIDDEN
  • DOM_FORM_CONTROL_TYPE_INPUT_IMAGE
  • DOM_FORM_CONTROL_TYPE_INPUT_MONTH
  • DOM_FORM_CONTROL_TYPE_INPUT_NUMBER
  • DOM_FORM_CONTROL_TYPE_INPUT_PASSWORD
  • DOM_FORM_CONTROL_TYPE_INPUT_RADIO
  • DOM_FORM_CONTROL_TYPE_INPUT_RANGE
  • DOM_FORM_CONTROL_TYPE_INPUT_RESET
  • DOM_FORM_CONTROL_TYPE_INPUT_SEARCH
  • DOM_FORM_CONTROL_TYPE_INPUT_SUBMIT
  • DOM_FORM_CONTROL_TYPE_INPUT_TELEPHONE
  • DOM_FORM_CONTROL_TYPE_INPUT_TEXT
  • DOM_FORM_CONTROL_TYPE_INPUT_TIME
  • DOM_FORM_CONTROL_TYPE_INPUT_URL
  • DOM_FORM_CONTROL_TYPE_INPUT_WEEK
  • DOM_FORM_CONTROL_TYPE_OUTPUT
  • DOM_FORM_CONTROL_TYPE_SELECT_ONE
  • DOM_FORM_CONTROL_TYPE_SELECT_MULTIPLE
  • DOM_FORM_CONTROL_TYPE_SELECT_LIST
  • DOM_FORM_CONTROL_TYPE_TEXT_AREA
TCefContextMenuMediaType = (...);

Supported context menu media types. These constants match their equivalents in Chromium's ContextMenuDataMediaType and should not be renumbered.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_media_type_t))

Values
  • CM_MEDIATYPE_NONE: No special node is in context.
  • CM_MEDIATYPE_IMAGE: An image node is selected.
  • CM_MEDIATYPE_VIDEO: A video node is selected.
  • CM_MEDIATYPE_AUDIO: An audio node is selected.
  • CM_MEDIATYPE_CANVAS: An canvas node is selected.
  • CM_MEDIATYPE_FILE: A file node is selected.
  • CM_MEDIATYPE_PLUGIN: A plugin node is selected.
TCefMenuItemType = (...);

Supported menu item types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_menu_item_type_t))

Values
  • MENUITEMTYPE_NONE
  • MENUITEMTYPE_COMMAND
  • MENUITEMTYPE_CHECK
  • MENUITEMTYPE_RADIO
  • MENUITEMTYPE_SEPARATOR
  • MENUITEMTYPE_SUBMENU
TCefFocusSource = (...);

Focus sources.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_focus_source_t))

Values
  • FOCUS_SOURCE_NAVIGATION = 0: The source is explicit navigation via the API (LoadURL(), etc).
  • FOCUS_SOURCE_SYSTEM: The source is a system-generated focus event.
TCefJsDialogType = (...);

Supported JavaScript dialog types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_jsdialog_type_t))

Values
  • JSDIALOGTYPE_ALERT = 0
  • JSDIALOGTYPE_CONFIRM
  • JSDIALOGTYPE_PROMPT
TCefKeyEventType = (...);

Notification that a character was typed. Use this for text input. Key down events may generate 0, 1, or more than one character event depending on the key, locale, and operating system.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_key_event_type_t))

Values
  • KEYEVENT_RAWKEYDOWN = 0: Notification that a key transitioned from "up" to "down".
  • KEYEVENT_KEYDOWN: Notification that a key was pressed. This does not necessarily correspond to a character depending on the key and language. Use KEYEVENT_CHAR for character input.
  • KEYEVENT_KEYUP: Notification that a key was released.
  • KEYEVENT_CHAR: Notification that a character was typed. Use this for text input. Key down events may generate 0, 1, or more than one character event depending on the key, locale, and operating system.
TCefWindowOpenDisposition = (...);

The manner in which a link click should be opened. These constants match their equivalents in Chromium's window_open_disposition.h and should not be renumbered.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_window_open_disposition_t))

Values
  • CEF_WOD_UNKNOWN: Unknown disposition.
  • CEF_WOD_CURRENT_TAB: Current tab. This is the default in most cases.
  • CEF_WOD_SINGLETON_TAB: Indicates that only one tab with the url should exist in the same window.
  • CEF_WOD_NEW_FOREGROUND_TAB: Shift key + Middle mouse button or meta/ctrl key while clicking.
  • CEF_WOD_NEW_BACKGROUND_TAB: Middle mouse button or meta/ctrl key while clicking.
  • CEF_WOD_NEW_POPUP: New popup window.
  • CEF_WOD_NEW_WINDOW: Shift key while clicking.
  • CEF_WOD_SAVE_TO_DISK: Alt key while clicking.
  • CEF_WOD_OFF_THE_RECORD: New off-the-record (incognito) window.
  • CEF_WOD_IGNORE_ACTION: Special case error condition from the renderer.
  • CEF_WOD_SWITCH_TO_TAB: Activates an existing tab containing the url, rather than navigating. This is similar to SINGLETON_TAB, but searches across all windows from the current profile and anonymity (instead of just the current one); closes the current tab on switching if the current tab was the NTP with no session history; and behaves like CURRENT_TAB instead of NEW_FOREGROUND_TAB when no existing tab is found.
  • CEF_WOD_NEW_PICTURE_IN_PICTURE: Creates a new document picture-in-picture window showing a child WebView.
TCefTextInpuMode = (...);

Input mode of a virtual keyboard. These constants match their equivalents in Chromium's text_input_mode.h and should not be renumbered. See https://html.spec.whatwg.org/#input-modalities:-the-inputmode-attribute

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_text_input_mode_t))

Values
  • CEF_TEXT_INPUT_MODE_DEFAULT
  • CEF_TEXT_INPUT_MODE_NONE
  • CEF_TEXT_INPUT_MODE_TEXT
  • CEF_TEXT_INPUT_MODE_TEL
  • CEF_TEXT_INPUT_MODE_URL
  • CEF_TEXT_INPUT_MODE_EMAIL
  • CEF_TEXT_INPUT_MODE_NUMERIC
  • CEF_TEXT_INPUT_MODE_DECIMAL
  • CEF_TEXT_INPUT_MODE_SEARCH
TCefTouchEeventType = (...);

Touch points states types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_touch_event_type_t))

Values
  • CEF_TET_RELEASED = 0
  • CEF_TET_PRESSED
  • CEF_TET_MOVED
  • CEF_TET_CANCELLED
TCefPointerType = (...);

The device type that caused the event.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_pointer_type_t))

Values
  • CEF_POINTER_TYPE_TOUCH = 0
  • CEF_POINTER_TYPE_MOUSE
  • CEF_POINTER_TYPE_PEN
  • CEF_POINTER_TYPE_ERASER
  • CEF_POINTER_TYPE_UNKNOWN
TCefChannelLayout = (...);

Enumerates the various representations of the ordering of audio channels. Must be kept synchronized with media::ChannelLayout from Chromium. See media\base\channel_layout.h

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_channel_layout_t))

Values
  • CEF_CHANNEL_LAYOUT_NONE = 0
  • CEF_CHANNEL_LAYOUT_UNSUPPORTED = 1
  • CEF_CHANNEL_LAYOUT_MONO = 2: Front C
  • CEF_CHANNEL_LAYOUT_STEREO = 3: Front L, Front R
  • CEF_CHANNEL_LAYOUT_2_1 = 4: Front L, Front R, Back C
  • CEF_CHANNEL_LAYOUT_SURROUND = 5: Front L, Front R, Front C
  • CEF_CHANNEL_LAYOUT_4_0 = 6: Front L, Front R, Front C, Back C
  • CEF_CHANNEL_LAYOUT_2_2 = 7: Front L, Front R, Side L, Side R
  • CEF_CHANNEL_LAYOUT_QUAD = 8: Front L, Front R, Back L, Back R
  • CEF_CHANNEL_LAYOUT_5_0 = 9: Front L, Front R, Front C, Side L, Side R
  • CEF_CHANNEL_LAYOUT_5_1 = 10: Front L, Front R, Front C, LFE, Side L, Side R
  • CEF_CHANNEL_LAYOUT_5_0_BACK = 11: Front L, Front R, Front C, Back L, Back R
  • CEF_CHANNEL_LAYOUT_5_1_BACK = 12: Front L, Front R, Front C, LFE, Back L, Back R
  • CEF_CHANNEL_LAYOUT_7_0 = 13: Front L, Front R, Front C, Side L, Side R, Back L, Back R
  • CEF_CHANNEL_LAYOUT_7_1 = 14: Front L, Front R, Front C, LFE, Side L, Side R, Back L, Back R
  • CEF_CHANNEL_LAYOUT_7_1_WIDE = 15: Front L, Front R, Front C, LFE, Side L, Side R, Front LofC, Front RofC
  • CEF_CHANNEL_LAYOUT_STEREO_DOWNMIX = 16: Stereo L, Stereo R
  • CEF_CHANNEL_LAYOUT_2POINT1 = 17: Stereo L, Stereo R, LFE
  • CEF_CHANNEL_LAYOUT_3_1 = 18: Stereo L, Stereo R, Front C, LFE
  • CEF_CHANNEL_LAYOUT_4_1 = 19: Stereo L, Stereo R, Front C, Rear C, LFE
  • CEF_CHANNEL_LAYOUT_6_0 = 20: Stereo L, Stereo R, Front C, Side L, Side R, Back C
  • CEF_CHANNEL_LAYOUT_6_0_FRONT = 21: Stereo L, Stereo R, Side L, Side R, Front LofC, Front RofC
  • CEF_CHANNEL_LAYOUT_HEXAGONAL = 22: Stereo L, Stereo R, Front C, Rear L, Rear R, Rear C
  • CEF_CHANNEL_LAYOUT_6_1 = 23: Stereo L, Stereo R, Front C, LFE, Side L, Side R, Rear Center
  • CEF_CHANNEL_LAYOUT_6_1_BACK = 24: Stereo L, Stereo R, Front C, LFE, Back L, Back R, Rear Center
  • CEF_CHANNEL_LAYOUT_6_1_FRONT = 25: Stereo L, Stereo R, Side L, Side R, Front LofC, Front RofC, LFE
  • CEF_CHANNEL_LAYOUT_7_0_FRONT = 26: Front L, Front R, Front C, Side L, Side R, Front LofC, Front RofC
  • CEF_CHANNEL_LAYOUT_7_1_WIDE_BACK = 27: Front L, Front R, Front C, LFE, Back L, Back R, Front LofC, Front RofC
  • CEF_CHANNEL_LAYOUT_OCTAGONAL = 28: Front L, Front R, Front C, Side L, Side R, Rear L, Back R, Back C.
  • CEF_CHANNEL_LAYOUT_DISCRETE = 29: Channels are not explicitly mapped to speakers.
  • CEF_CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC = 30: Front L, Front R, Front C. Front C contains the keyboard mic audio. This layout is only intended for input for WebRTC. The Front C channel is stripped away in the WebRTC audio input pipeline and never seen outside of that.
  • CEF_CHANNEL_LAYOUT_4_1_QUAD_SIDE = 31: Front L, Front R, Side L, Side R, LFE
  • CEF_CHANNEL_LAYOUT_BITSTREAM = 32: Actual channel layout is specified in the bitstream and the actual channel count is unknown at Chromium media pipeline level (useful for audio pass-through mode).
  • CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX = 33: Front L, Front R, Front C, LFE, Side L, Side R, Front Height L, Front Height R, Rear Height L, Rear Height R Will be represented as six channels (5.1) due to eight channel limit kMaxConcurrentChannels
TCefCookieSameSite = (...);

Cookie same site values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cookie_same_site_t))

Values
  • CEF_COOKIE_SAME_SITE_UNSPECIFIED
  • CEF_COOKIE_SAME_SITE_NO_RESTRICTION
  • CEF_COOKIE_SAME_SITE_LAX_MODE
  • CEF_COOKIE_SAME_SITE_STRICT_MODE
TCefPaintElementType = (...);

Paint element types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_paint_element_type_t))

Values
  • PET_VIEW
  • PET_POPUP
TCefCursorType = (...);

Cursor type values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cursor_type_t))

Values
  • CT_POINTER = 0
  • CT_CROSS
  • CT_HAND
  • CT_IBEAM
  • CT_WAIT
  • CT_HELP
  • CT_EASTRESIZE
  • CT_NORTHRESIZE
  • CT_NORTHEASTRESIZE
  • CT_NORTHWESTRESIZE
  • CT_SOUTHRESIZE
  • CT_SOUTHEASTRESIZE
  • CT_SOUTHWESTRESIZE
  • CT_WESTRESIZE
  • CT_NORTHSOUTHRESIZE
  • CT_EASTWESTRESIZE
  • CT_NORTHEASTSOUTHWESTRESIZE
  • CT_NORTHWESTSOUTHEASTRESIZE
  • CT_COLUMNRESIZE
  • CT_ROWRESIZE
  • CT_MIDDLEPANNING
  • CT_EASTPANNING
  • CT_NORTHPANNING
  • CT_NORTHEASTPANNING
  • CT_NORTHWESTPANNING
  • CT_SOUTHPANNING
  • CT_SOUTHEASTPANNING
  • CT_SOUTHWESTPANNING
  • CT_WESTPANNING
  • CT_MOVE
  • CT_VERTICALTEXT
  • CT_CELL
  • CT_CONTEXTMENU
  • CT_ALIAS
  • CT_PROGRESS
  • CT_NODROP
  • CT_COPY
  • CT_NONE
  • CT_NOTALLOWED
  • CT_ZOOMIN
  • CT_ZOOMOUT
  • CT_GRAB
  • CT_GRABBING
  • CT_MIDDLE_PANNING_VERTICAL
  • CT_MIDDLE_PANNING_HORIZONTAL
  • CT_CUSTOM
  • CT_DND_NONE
  • CT_DND_MOVE
  • CT_DND_COPY
  • CT_DND_LIN
TCefNavigationType = (...);

Navigation types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_navigation_type_t))

Values
  • NAVIGATION_LINK_CLICKED
  • NAVIGATION_FORM_SUBMITTED
  • NAVIGATION_BACK_FORWARD
  • NAVIGATION_RELOAD
  • NAVIGATION_FORM_RESUBMITTED
  • NAVIGATION_OTHER
TCefProcessId = (...);

Existing process IDs.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_process_id_t))

Values
  • PID_BROWSER: Browser process.
  • PID_RENDERER: Renderer process.
TCefThreadId = (...);

Existing thread IDs.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_thread_id_t))

Values
  • TID_UI: BROWSER PROCESS THREADS – Only available in the browser process. <summary> The main thread in the browser. This will be the same as the main application thread if CefInitialize() is called with a TCefSettings.multi_threaded_message_loop value of false. Do not perform blocking tasks on this thread. All tasks posted after ICefBrowserProcessHandler.OnContextInitialized() and before CefShutdown() are guaranteed to run. This thread will outlive all other CEF threads. </summary>
  • TID_FILE_BACKGROUND: Used for blocking tasks like file system access where the user won't notice if the task takes an arbitrarily long time to complete. All tasks posted after ICefBrowserProcessHandler.OnContextInitialized() and before CefShutdown() are guaranteed to run.
  • TID_FILE_USER_VISIBLE: Used for blocking tasks like file system access that affect UI or responsiveness of future user interactions. Do not use if an immediate response to a user interaction is expected. All tasks posted after ICefBrowserProcessHandler.OnContextInitialized() and before CefShutdown() are guaranteed to run. Examples: - Updating the UI to reflect progress on a long task. - Loading data that might be shown in the UI after a future user interaction.
  • TID_FILE_USER_BLOCKING: Used for blocking tasks like file system access that affect UI immediately after a user interaction. All tasks posted after ICefBrowserProcessHandler.OnContextInitialized() and before CefShutdown() are guaranteed to run. Example: Generating data shown in the UI immediately after a click.
  • TID_PROCESS_LAUNCHER: Used to launch and terminate browser processes.
  • TID_IO: Used to process IPC and network messages. Do not perform blocking tasks on this thread. All tasks posted after ICefBrowserProcessHandler.OnContextInitialized() and before CefShutdown() are guaranteed to run.
  • TID_RENDERER: RENDER PROCESS THREADS – Only available in the render process. <summary> The main thread in the renderer. Used for all WebKit and V8 interaction. Tasks may be posted to this thread after ICefRenderProcessHandler.OnWebKitInitialized but are not guaranteed to run before sub-process termination (sub-processes may be killed at any time without warning). </summary>
TCefThreadPriority = (...);

Thread priority values listed in increasing order of importance.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_thread_priority_t))

Values
  • TP_BACKGROUND: Suitable for threads that shouldn't disrupt high priority work.
  • TP_NORMAL: Default priority level.
  • TP_DISPLAY: Suitable for threads which generate data for the display (at ~60Hz).
  • TP_REALTIME_AUDIO: Suitable for low-latency, glitch-resistant audio.
TCefMessageLoopType = (...);

Flags used to customize the behavior of CefURLRequest.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_message_loop_type_t))

Values
  • ML_TYPE_DEFAULT: Supports tasks and timers.
  • ML_TYPE_UI: Supports tasks, timers and native UI events (e.g. Windows messages).
  • ML_TYPE_IO: Supports tasks, timers and asynchronous IO events.
TCefCOMInitMode = (...);

Flags used to customize the behavior of CefURLRequest.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_com_init_mode_t))

Values
  • COM_INIT_MODE_NONE: No COM initialization.
  • COM_INIT_MODE_STA: Initialize COM using single-threaded apartments.
  • COM_INIT_MODE_MTA: Initialize COM using multi-threaded apartments.
TCefMouseButtonType = (...);

Mouse button types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_mouse_button_type_t))

Values
  • MBT_LEFT
  • MBT_MIDDLE
  • MBT_RIGHT
TCefReturnValue = (...);

Return value types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_return_value_t))

Values
  • RV_CANCEL = 0: Cancel immediately.
  • RV_CONTINUE: Continue immediately.
  • RV_CONTINUE_ASYNC: Continue asynchronously (usually via a callback).
TCefUrlRequestStatus = (...);

Flags that represent CefURLRequest status.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_urlrequest_status_t))

Values
  • UR_UNKNOWN = 0: Unknown status.
  • UR_SUCCESS: Request succeeded.
  • UR_IO_PENDING: An IO request is pending, and the caller will be informed when it is completed.
  • UR_CANCELED: Request was canceled programatically.
  • UR_FAILED: Request failed for some reason.
TCefTerminationStatus = (...);

Process termination status values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_termination_status_t))

Values
  • TS_ABNORMAL_TERMINATION: Non-zero exit status.
  • TS_PROCESS_WAS_KILLED: SIGKILL or task manager kill.
  • TS_PROCESS_CRASHED: Segmentation fault.
  • TS_PROCESS_OOM: Out of memory. Some platforms may use TS_PROCESS_CRASHED instead.
TCefPathKey = (...);

Process termination status values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_path_key_t))

Values
  • PK_DIR_CURRENT: Current directory.
  • PK_DIR_EXE: Directory containing PK_FILE_EXE.
  • PK_DIR_MODULE: Directory containing PK_FILE_MODULE.
  • PK_DIR_TEMP: Temporary directory.
  • PK_FILE_EXE: Path and filename of the current executable.
  • PK_FILE_MODULE: Path and filename of the module containing the CEF code (usually the libcef module).
  • PK_LOCAL_APP_DATA: "Local Settings\Application Data" directory under the user profile directory on Windows.
  • PK_USER_DATA: "Application Data" directory under the user profile directory on Windows and "~/Library/Application Support" directory on MacOS.
  • PK_DIR_RESOURCES: Directory containing application resources. Can be configured via TCefSettings.resources_dir_path.
TCefStorageType = (...);

Storage types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_storage_type_t))

Values
  • ST_LOCALSTORAGE = 0
  • ST_SESSIONSTORAGE
TCefResponseFilterStatus = (...);

Return values for ICefResponseFilter.Filter().

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_response_filter_status_t))

Values
  • RESPONSE_FILTER_NEED_MORE_DATA: Some or all of the pre-filter data was read successfully but more data is needed in order to continue filtering (filtered output is pending).
  • RESPONSE_FILTER_DONE: Some or all of the pre-filter data was read successfully and all available filtered output has been written.
  • RESPONSE_FILTER_ERROR: An error occurred during filtering.
TCefColorType = (...);

Describes how to interpret the components of a pixel.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_color_type_t))

Values
  • CEF_COLOR_TYPE_RGBA_8888: RGBA with 8 bits per pixel (32bits total).
  • CEF_COLOR_TYPE_BGRA_8888: BGRA with 8 bits per pixel (32bits total).
TCefAlphaType = (...);

Describes how to interpret the alpha component of a pixel.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_alpha_type_t))

Values
  • CEF_ALPHA_TYPE_OPAQUE: No transparency. The alpha component is ignored.
  • CEF_ALPHA_TYPE_PREMULTIPLIED: Transparency with pre-multiplied alpha component.
  • CEF_ALPHA_TYPE_POSTMULTIPLIED: Transparency with post-multiplied alpha component.
TCefTextStyle = (...);

Text style types. Should be kepy in sync with gfx::TextStyle.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_text_style_t))

Values
  • CEF_TEXT_STYLE_BOLD
  • CEF_TEXT_STYLE_ITALIC
  • CEF_TEXT_STYLE_STRIKE
  • CEF_TEXT_STYLE_DIAGONAL_STRIKE
  • CEF_TEXT_STYLE_UNDERLINE
TCefMainAxisAlignment = (...);

Specifies where along the main axis the CefBoxLayout child views should be laid out.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_main_axis_alignment_t))

Values
  • CEF_MAIN_AXIS_ALIGNMENT_START: Child views will be left-aligned.
  • CEF_MAIN_AXIS_ALIGNMENT_CENTER: Child views will be center-aligned.
  • CEF_MAIN_AXIS_ALIGNMENT_END: Child views will be right-aligned.
TCefCrossAxisAlignment = (...);

Specifies where along the main axis the CefBoxLayout child views should be laid out.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cross_axis_alignment_t))

Values
  • CEF_CROSS_AXIS_ALIGNMENT_STRETCH: Child views will be stretched to fit.
  • CEF_CROSS_AXIS_ALIGNMENT_START: Child views will be left-aligned.
  • CEF_CROSS_AXIS_ALIGNMENT_CENTER: Child views will be center-aligned.
  • CEF_CROSS_AXIS_ALIGNMENT_END: Child views will be right-aligned.
TCefPdfPrintMarginType = (...);

Margin type for PDF printing.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_pdf_print_margin_type_t))

Values
  • PDF_PRINT_MARGIN_DEFAULT: Default margins of 1cm (~0.4 inches).
  • PDF_PRINT_MARGIN_NONE: No margins.
  • PDF_PRINT_MARGIN_CUSTOM: Custom margins using the |margin_*| values from TCefPdfPrintSettings.
TCefColorModel = (...);

Print job color mode values.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_color_model_t))

Values
  • COLOR_MODEL_UNKNOWN
  • COLOR_MODEL_GRAY
  • COLOR_MODEL_COLOR
  • COLOR_MODEL_CMYK
  • COLOR_MODEL_CMY
  • COLOR_MODEL_KCMY
  • COLOR_MODEL_CMY_K: CMY_K represents CMY+K.
  • COLOR_MODEL_BLACK
  • COLOR_MODEL_GRAYSCALE
  • COLOR_MODEL_RGB
  • COLOR_MODEL_RGB16
  • COLOR_MODEL_RGBA
  • COLOR_MODEL_COLORMODE_COLOR: Used in samsung printer ppds.
  • COLOR_MODEL_COLORMODE_MONOCHROME: Used in samsung printer ppds.
  • COLOR_MODEL_HP_COLOR_COLOR: Used in HP color printer ppds.
  • COLOR_MODEL_HP_COLOR_BLACK: Used in HP color printer ppds.
  • COLOR_MODEL_PRINTOUTMODE_NORMAL: Used in foomatic ppds.
  • COLOR_MODEL_PRINTOUTMODE_NORMAL_GRAY: Used in foomatic ppds.
  • COLOR_MODEL_PROCESSCOLORMODEL_CMYK: Used in canon printer ppds.
  • COLOR_MODEL_PROCESSCOLORMODEL_GREYSCALE: Used in canon printer ppds.
  • COLOR_MODEL_PROCESSCOLORMODEL_RGB: Used in canon printer ppds
TCefJsonParserOptions = (...);

Options that can be passed to CefParseJSON.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_json_parser_options_t))

Values
  • JSON_PARSER_RFC = 0: Parses the input strictly according to RFC 4627. See comments in Chromium's base/json/json_reader.h file for known limitations/ deviations from the RFC.
  • JSON_PARSER_ALLOW_TRAILING_COMMAS = 1shl0: Allows commas to exist after the last element in structures.
TCefXmlEncodingType = (...);

Supported XML encoding types. The parser supports ASCII, ISO-8859-1, and UTF16 (LE and BE) by default. All other types must be translated to UTF8 before being passed to the parser. If a BOM is detected and the correct decoder is available then that decoder will be used automatically.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_xml_encoding_type_t))

Values
  • XML_ENCODING_NONE = 0
  • XML_ENCODING_UTF8
  • XML_ENCODING_UTF16LE
  • XML_ENCODING_UTF16BE
  • XML_ENCODING_ASCII
TCefXmlNodeType = (...);

XML node types.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_xml_node_type_t))

Values
  • XML_NODE_UNSUPPORTED = 0
  • XML_NODE_PROCESSING_INSTRUCTION
  • XML_NODE_DOCUMENT_TYPE
  • XML_NODE_ELEMENT_START
  • XML_NODE_ELEMENT_END
  • XML_NODE_ATTRIBUTE
  • XML_NODE_TEXT
  • XML_NODE_CDATA
  • XML_NODE_ENTITY_REFERENCE
  • XML_NODE_WHITESPACE
  • XML_NODE_COMMENT
TCefDomEventPhase = (...);

DOM event processing phases.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_event_phase_t))

Values
  • DOM_EVENT_PHASE_UNKNOWN = 0
  • DOM_EVENT_PHASE_CAPTURING
  • DOM_EVENT_PHASE_AT_TARGET
  • DOM_EVENT_PHASE_BUBBLING
TCefButtonState = (...);

Specifies the button display state.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_button_state_t))

Values
  • CEF_BUTTON_STATE_NORMAL
  • CEF_BUTTON_STATE_HOVERED
  • CEF_BUTTON_STATE_PRESSED
  • CEF_BUTTON_STATE_DISABLED
TCefHorizontalAlignment = (...);

Specifies the horizontal text alignment mode.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_horizontal_alignment_t))

Values
  • CEF_HORIZONTAL_ALIGNMENT_LEFT: Align the text's left edge with that of its display area.
  • CEF_HORIZONTAL_ALIGNMENT_CENTER: Align the text's center with that of its display area.
  • CEF_HORIZONTAL_ALIGNMENT_RIGHT: Align the text's right edge with that of its display area.
TCefMenuAnchorPosition = (...);

Specifies how a menu will be anchored for non-RTL languages. The opposite position will be used for RTL languages.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_menu_anchor_position_t))

Values
  • CEF_MENU_ANCHOR_TOPLEFT
  • CEF_MENU_ANCHOR_TOPRIGHT
  • CEF_MENU_ANCHOR_BOTTOMCENTER
TCefMenuColorType = (...);

Supported color types for menu items.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_menu_color_type_t))

Values
  • CEF_MENU_COLOR_TEXT
  • CEF_MENU_COLOR_TEXT_HOVERED
  • CEF_MENU_COLOR_TEXT_ACCELERATOR
  • CEF_MENU_COLOR_TEXT_ACCELERATOR_HOVERED
  • CEF_MENU_COLOR_BACKGROUND
  • CEF_MENU_COLOR_BACKGROUND_HOVERED
  • CEF_MENU_COLOR_COUNT
TCefCompositionUnderlineStyle = (...);

Composition underline style.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_composition_underline_style_t))

Values
  • CEF_CUS_SOLID
  • CEF_CUS_DOT
  • CEF_CUS_DASH
  • CEF_CUS_NONE
TCefPermissionRequestResult = (...);

Permission request results.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_permission_request_result_t))

Values
  • CEF_PERMISSION_RESULT_ACCEPT: Accept the permission request as an explicit user action.
  • CEF_PERMISSION_RESULT_DENY: Deny the permission request as an explicit user action.
  • CEF_PERMISSION_RESULT_DISMISS: Dismiss the permission request as an explicit user action.
  • CEF_PERMISSION_RESULT_IGNORE: Ignore the permission request. If the prompt remains unhandled (e.g. OnShowPermissionPrompt returns false and there is no default permissions UI) then any related promises may remain unresolved.
TCefPreferencesType = (...);

Preferences type passed to ICefBrowserProcessHandler.OnRegisterCustomPreferences.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_preferences_type_t))

Values
  • CEF_PREFERENCES_TYPE_GLOBAL: Global preferences registered a single time at application startup.
  • CEF_PREFERENCES_TYPE_REQUEST_CONTEXT: Request context preferences registered each time a new CefRequestContext is created.
TCefGestureCommand = (...);

Specifies the gesture commands.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_gesture_command_t))

Values
  • CEF_GESTURE_COMMAND_BACK
  • CEF_GESTURE_COMMAND_FORWARD
TCefZoomCommand = (...);

Specifies the zoom commands supported by ICefBrowserHost.Zoom.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_zoom_command_t))

Values
  • CEF_ZOOM_COMMAND_OUT
  • CEF_ZOOM_COMMAND_RESET
  • CEF_ZOOM_COMMAND_IN
TCefTestCertType = (...);

Specifies the gesture commands.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_test_cert_type_t))

Values
  • CEF_TEST_CERT_OK_IP: Valid certificate using the IP (127.0.0.1). Loads the "ok_cert.pem" file.
  • CEF_TEST_CERT_OK_DOMAIN: Valid certificate using the domain ("localhost"). Loads the "localhost_cert.pem" file.
  • CEF_TEST_CERT_EXPIRED: Expired certificate. Loads the "expired_cert.pem" file.
TCefChromePageActionIconType = (...);

Chrome page action icon types. Should be kept in sync with Chromium's PageActionIconType type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_chrome_page_action_icon_type_t))

Values
  • CEF_CPAIT_BOOKMARK_STAR
  • CEF_CPAIT_CLICK_TO_CALL
  • CEF_CPAIT_COOKIE_CONTROLS
  • CEF_CPAIT_FILE_SYSTEM_ACCESS
  • CEF_CPAIT_FIND
  • CEF_CPAIT_HIGH_EFFICIENCY
  • CEF_CPAIT_INTENT_PICKER
  • CEF_CPAIT_LOCAL_CARD_MIGRATION
  • CEF_CPAIT_MANAGE_PASSWORDS
  • CEF_CPAIT_PAYMENTS_OFFER_NOTIFICATION
  • CEF_CPAIT_PRICE_TRACKING
  • CEF_CPAIT_PWA_INSTALL
  • CEF_CPAIT_QR_CODE_GENERATOR
  • CEF_CPAIT_READER_MODE
  • CEF_CPAIT_SAVE_AUTOFILL_ADDRESS
  • CEF_CPAIT_SAVE_CARD
  • CEF_CPAIT_SEND_TAB_TO_SELF
  • CEF_CPAIT_SHARING_HUB
  • CEF_CPAIT_SIDE_SEARCH
  • CEF_CPAIT_SMS_REMOTE_FETCHER
  • CEF_CPAIT_TRANSLATE
  • CEF_CPAIT_VIRTUAL_CARD_ENROLL
  • CEF_CPAIT_VIRTUAL_CARD_MANUAL_FALLBACK
  • CEF_CPAIT_ZOOM
  • CEF_CPAIT_SAVE_IBAN
  • CEF_CPAIT_MANDATORY_REAUTH
  • CEF_CPAIT_PRICE_INSIGHTS
  • CEF_CPAIT_PRICE_READ_ANYTHING
TCefChromeToolbarButtonType = (...);

Chrome toolbar button types. Should be kept in sync with CEF's internal ToolbarButtonType type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_time.h">CEF source file: /include/internal/cef_time.h (cef_chrome_toolbar_button_type_t))

Values
  • CEF_CTBT_CAST
  • CEF_CTBT_DOWNLOAD
  • CEF_CTBT_SEND_TAB_TO_SELF
  • CEF_CTBT_SIDE_PANEL
TCefCompositionUnderlineDynArray = array of TCefCompositionUnderline;

This item has no description.

TCefBaseTime = type int64;

Represents a wall clock time in UTC. Values are not guaranteed to be monotonically non-decreasing and are subject to large amounts of skew. Time is stored internally as microseconds since the Windows epoch (1601).

This is equivalent of Chromium `base::Time` (see base/time/time.h).

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_time.h">CEF source file: /include/internal/cef_time.h (cef_basetime_t))

TCefDraggableRegionArray = array[0..(High(Integer) div SizeOf(TCefDraggableRegion))-1] of TCefDraggableRegion;

This item has no description.

TCefContentSettingTypes = (...);

Supported content setting types. Some types are platform-specific or only supported with the Chrome runtime. Should be kept in sync with Chromium's ContentSettingsType type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_content_settings.h">CEF source file: /include/internal/cef_types_content_settings.h (cef_content_setting_types_t))

Values
  • CEF_CONTENT_SETTING_TYPE_COOKIES = 0: This setting governs whether cookies are enabled by the user in the provided context. However, it may be overridden by other settings. This enum should NOT be read directly to determine whether cookies are enabled; the client should instead rely on the CookieSettings API.
  • CEF_CONTENT_SETTING_TYPE_IMAGES
  • CEF_CONTENT_SETTING_TYPE_JAVASCRIPT
  • CEF_CONTENT_SETTING_TYPE_POPUPS: This setting governs both popups and unwanted redirects like tab-unders and framebusting.
  • CEF_CONTENT_SETTING_TYPE_GEOLOCATION
  • CEF_CONTENT_SETTING_TYPE_NOTIFICATIONS
  • CEF_CONTENT_SETTING_TYPE_AUTO_SELECT_CERTIFICATE
  • CEF_CONTENT_SETTING_TYPE_MIXEDSCRIPT
  • CEF_CONTENT_SETTING_TYPE_MEDIASTREAM_MIC
  • CEF_CONTENT_SETTING_TYPE_MEDIASTREAM_CAMERA
  • CEF_CONTENT_SETTING_TYPE_PROTOCOL_HANDLERS
  • CEF_CONTENT_SETTING_TYPE_DEPRECATED_PPAPI_BROKER
  • CEF_CONTENT_SETTING_TYPE_AUTOMATIC_DOWNLOADS
  • CEF_CONTENT_SETTING_TYPE_MIDI_SYSEX: Advanced device-specific functions on MIDI devices. MIDI-SysEx communications can be used for changing the MIDI device's persistent state such as firmware.
  • CEF_CONTENT_SETTING_TYPE_SSL_CERT_DECISIONS
  • CEF_CONTENT_SETTING_TYPE_PROTECTED_MEDIA_IDENTIFIER
  • CEF_CONTENT_SETTING_TYPE_APP_BANNER
  • CEF_CONTENT_SETTING_TYPE_SITE_ENGAGEMENT
  • CEF_CONTENT_SETTING_TYPE_DURABLE_STORAGE
  • CEF_CONTENT_SETTING_TYPE_USB_CHOOSER_DATA
  • CEF_CONTENT_SETTING_TYPE_BLUETOOTH_GUARD
  • CEF_CONTENT_SETTING_TYPE_BACKGROUND_SYNC
  • CEF_CONTENT_SETTING_TYPE_AUTOPLAY
  • CEF_CONTENT_SETTING_TYPE_IMPORTANT_SITE_INFO
  • CEF_CONTENT_SETTING_TYPE_PERMISSION_AUTOBLOCKER_DATA
  • CEF_CONTENT_SETTING_TYPE_ADS
  • CEF_CONTENT_SETTING_TYPE_ADS_DATA: Website setting which stores metadata for the subresource filter to aid in decisions for whether or not to show the UI.
  • CEF_CONTENT_SETTING_TYPE_MIDI: MIDI stands for Musical Instrument Digital Interface. It is a standard that allows electronic musical instruments, computers, and other devices to communicate with each other.
  • CEF_CONTENT_SETTING_TYPE_PASSWORD_PROTECTION: This content setting type is for caching password protection service's verdicts of each origin.
  • CEF_CONTENT_SETTING_TYPE_MEDIA_ENGAGEMENT: Website setting which stores engagement data for media related to a specific origin.
  • CEF_CONTENT_SETTING_TYPE_SOUND: Content setting which stores whether or not the site can play audible sound. This will not block playback but instead the user will not hear it.
  • CEF_CONTENT_SETTING_TYPE_CLIENT_HINTS: Website setting which stores the list of client hints that the origin requested the browser to remember. The browser is expected to send all client hints in the HTTP request headers for every resource requested from that origin.
  • CEF_CONTENT_SETTING_TYPE_SENSORS: Generic Sensor API covering ambient-light-sensor, accelerometer, gyroscope and magnetometer are all mapped to a single content_settings_type. Setting for the Generic Sensor API covering ambient-light-sensor, accelerometer, gyroscope and magnetometer. These are all mapped to a single ContentSettingsType.
  • CEF_CONTENT_SETTING_TYPE_ACCESSIBILITY_EVENTS: Content setting which stores whether or not the user has granted the site permission to respond to accessibility events, which can be used to provide a custom accessibility experience. Requires explicit user consent because some users may not want sites to know they're using assistive technology.
  • CEF_CONTENT_SETTING_TYPE_PAYMENT_HANDLER: Used to store whether to allow a website to install a payment handler.
  • CEF_CONTENT_SETTING_TYPE_USB_GUARD: Content setting which stores whether to allow sites to ask for permission to access USB devices. If this is allowed specific device permissions are stored under USB_CHOOSER_DATA.
  • CEF_CONTENT_SETTING_TYPE_BACKGROUND_FETCH: Nothing is stored in this setting at present. Please refer to BackgroundFetchPermissionContext for details on how this permission is ascertained.
  • CEF_CONTENT_SETTING_TYPE_INTENT_PICKER_DISPLAY: Website setting which stores the amount of times the user has dismissed intent picker UI without explicitly choosing an option.
  • CEF_CONTENT_SETTING_TYPE_IDLE_DETECTION: Used to store whether to allow a website to detect user active/idle state.
  • CEF_CONTENT_SETTING_TYPE_SERIAL_GUARD: Content settings for access to serial ports. The "guard" content setting stores whether to allow sites to ask for permission to access a port. The permissions granted to access particular ports are stored in the "chooser data" website setting.
  • CEF_CONTENT_SETTING_TYPE_SERIAL_CHOOSER_DATA
  • CEF_CONTENT_SETTING_TYPE_PERIODIC_BACKGROUND_SYNC: Nothing is stored in this setting at present. Please refer to PeriodicBackgroundSyncPermissionContext for details on how this permission is ascertained. This content setting is not registered because it does not require access to any existing providers.
  • CEF_CONTENT_SETTING_TYPE_BLUETOOTH_SCANNING: Content setting which stores whether to allow sites to ask for permission to do Bluetooth scanning.
  • CEF_CONTENT_SETTING_TYPE_HID_GUARD: Content settings for access to HID devices. The "guard" content setting stores whether to allow sites to ask for permission to access a device. The permissions granted to access particular devices are stored in the "chooser data" website setting.
  • CEF_CONTENT_SETTING_TYPE_HID_CHOOSER_DATA
  • CEF_CONTENT_SETTING_TYPE_WAKE_LOCK_SCREEN: Wake Lock API, which has two lock types: screen and system locks. Currently, screen locks do not need any additional permission, and system locks are always denied while the right UI is worked out.
  • CEF_CONTENT_SETTING_TYPE_WAKE_LOCK_SYSTEM
  • CEF_CONTENT_SETTING_TYPE_LEGACY_COOKIE_ACCESS:

    Legacy SameSite cookie behavior. This disables SameSite=Lax-by-default, SameSite=None requires Secure, and Schemeful Same-Site, forcing the legacy behavior wherein 1

    cookies that don't specify SameSite are treated as SameSite=None, 2) SameSite=None cookies are not required to be Secure, and 3) schemeful same-site is not active.

    This will also be used to revert to legacy behavior when future changes in cookie handling are introduced.

    )

  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_WRITE_GUARD: Content settings which stores whether to allow sites to ask for permission to save changes to an original file selected by the user through the File System Access API.
  • CEF_CONTENT_SETTING_TYPE_NFC: Used to store whether to allow a website to exchange data with NFC devices.
  • CEF_CONTENT_SETTING_TYPE_BLUETOOTH_CHOOSER_DATA: Website setting to store permissions granted to access particular Bluetooth devices.
  • CEF_CONTENT_SETTING_TYPE_CLIPBOARD_READ_WRITE: Full access to the system clipboard (sanitized read without user gesture, and unsanitized read and write with user gesture).
  • CEF_CONTENT_SETTING_TYPE_CLIPBOARD_SANITIZED_WRITE: This is special-cased in the permissions layer to always allow, and as such doesn't have associated prefs data.
  • CEF_CONTENT_SETTING_TYPE_SAFE_BROWSING_URL_CHECK_DATA: This content setting type is for caching safe browsing real time url check's verdicts of each origin.
  • CEF_CONTENT_SETTING_TYPE_VR: Used to store whether a site is allowed to request AR or VR sessions with the WebXr Device API.
  • CEF_CONTENT_SETTING_TYPE_AR
  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_READ_GUARD: Content setting which stores whether to allow site to open and read files and directories selected through the File System Access API.
  • CEF_CONTENT_SETTING_TYPE_STORAGE_ACCESS: Access to first party storage in a third-party context. Exceptions are scoped to the combination of requesting/top-level origin, and are managed through the Storage Access API. For the time being, this content setting exists in parallel to third-party cookie rules stored in COOKIES.
  • CEF_CONTENT_SETTING_TYPE_CAMERA_PAN_TILT_ZOOM: Content setting which stores whether to allow a site to control camera movements. It does not give access to camera.
  • CEF_CONTENT_SETTING_TYPE_WINDOW_MANAGEMENT: Content setting for Screen Enumeration and Screen Detail functionality. Permits access to detailed multi-screen information, like size and position. Permits placing fullscreen and windowed content on specific screens. See also: https://w3c.github.io/window-placement
  • CEF_CONTENT_SETTING_TYPE_INSECURE_PRIVATE_NETWORK: Stores whether to allow insecure websites to make private network requests. See also: https://wicg.github.io/cors-rfc1918 Set through enterprise policies only.
  • CEF_CONTENT_SETTING_TYPE_LOCAL_FONTS: Content setting which stores whether or not a site can access low-level locally installed font data using the Local Fonts Access API.
  • CEF_CONTENT_SETTING_TYPE_PERMISSION_AUTOREVOCATION_DATA: Stores per-origin state for permission auto-revocation (for all permission types).
  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_LAST_PICKED_DIRECTORY: Stores per-origin state of the most recently selected directory for the use by the File System Access API.
  • CEF_CONTENT_SETTING_TYPE_DISPLAY_CAPTURE: Controls access to the getDisplayMedia API.
  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_CHOOSER_DATA: Website setting to store permissions metadata granted to paths on the local file system via the File System Access API. |FILE_SYSTEM_WRITE_GUARD| is the corresponding "guard" setting. The stored data represents valid permission only if |FILE_SYSTEM_ACCESS_EXTENDED_PERMISSION| is enabled via user opt-in. Otherwise, they represent "recently granted but revoked permission", which are used to restore the permission.
  • CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_SHARING: Stores a grant that allows a relying party to send a request for identity information to specified identity providers, potentially through any anti-tracking measures that would otherwise prevent it. This setting is associated with the relying party's origin.
  • CEF_CONTENT_SETTING_TYPE_JAVASCRIPT_JIT: Whether to use the v8 optimized JIT for running JavaScript on the page.
  • CEF_CONTENT_SETTING_TYPE_HTTP_ALLOWED: Content setting which stores user decisions to allow loading a site over HTTP. Entries are added by hostname when a user bypasses the HTTPS-First Mode interstitial warning when a site does not support HTTPS. Allowed hosts are exact hostname matches – subdomains of a host on the allowlist must be separately allowlisted.
  • CEF_CONTENT_SETTING_TYPE_FORMFILL_METADATA: Stores metadata related to form fill, such as e.g. whether user data was autofilled on a specific website.
  • CEF_CONTENT_SETTING_TYPE_DEPRECATED_FEDERATED_IDENTITY_ACTIVE_SESSION: Setting to indicate that there is an active federated sign-in session between a specified relying party and a specified identity provider for a specified account. When this is present it allows access to session management capabilities between the sites. This setting is associated with the relying party's origin. Obsolete on Nov 2023.
  • CEF_CONTENT_SETTING_TYPE_AUTO_DARK_WEB_CONTENT: Setting to indicate whether Chrome should automatically apply darkening to web content.
  • CEF_CONTENT_SETTING_TYPE_REQUEST_DESKTOP_SITE: Setting to indicate whether Chrome should request the desktop view of a site instead of the mobile one.
  • CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_API: Setting to indicate whether browser should allow signing into a website via the browser FedCM API.
  • CEF_CONTENT_SETTING_TYPE_NOTIFICATION_INTERACTIONS: Stores notification interactions per origin for the past 90 days. Interactions per origin are pre-aggregated over seven-day windows: A notification interaction or display is assigned to the last Monday midnight in local time.
  • CEF_CONTENT_SETTING_TYPE_REDUCED_ACCEPT_LANGUAGE: Website setting which stores the last reduced accept language negotiated for a given origin, to be used on future visits to the origin.
  • CEF_CONTENT_SETTING_TYPE_NOTIFICATION_PERMISSION_REVIEW: Website setting which is used for NotificationPermissionReviewService to store origin blocklist from review notification permissions feature.
  • CEF_CONTENT_SETTING_TYPE_PRIVATE_NETWORK_GUARD: Website setting to store permissions granted to access particular devices in private network.
  • CEF_CONTENT_SETTING_TYPE_PRIVATE_NETWORK_CHOOSER_DATA
  • CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_IDENTITY_PROVIDER_SIGNIN_STATUS: Website setting which stores whether the browser has observed the user signing into an identity-provider based on observing the IdP-SignIn-Status HTTP header.
  • CEF_CONTENT_SETTING_TYPE_REVOKED_UNUSED_SITE_PERMISSIONS: Website setting which is used for UnusedSitePermissionsService to store revoked permissions of unused sites from unused site permissions feature.
  • CEF_CONTENT_SETTING_TYPE_TOP_LEVEL_STORAGE_ACCESS: Similar to STORAGE_ACCESS, but applicable at the page-level rather than being specific to a frame.
  • CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_AUTO_REAUTHN_PERMISSION: Setting to indicate whether user has opted in to allowing auto re-authn via the FedCM API.
  • CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_IDENTITY_PROVIDER_REGISTRATION: Website setting which stores whether the user has explicitly registered a website as an identity-provider.
  • CEF_CONTENT_SETTING_TYPE_ANTI_ABUSE: Content setting which is used to indicate whether anti-abuse functionality should be enabled.
  • CEF_CONTENT_SETTING_TYPE_THIRD_PARTY_STORAGE_PARTITIONING: Content setting used to indicate whether third-party storage partitioning should be enabled.
  • CEF_CONTENT_SETTING_TYPE_HTTPS_ENFORCED: Used to indicate whether HTTPS-First Mode is enabled on the hostname.
  • CEF_CONTENT_SETTING_TYPE_ALL_SCREEN_CAPTURE: Setting for enabling the `getAllScreensMedia` API. Spec link: https://github.com/screen-share/capture-all-screens
  • CEF_CONTENT_SETTING_TYPE_COOKIE_CONTROLS_METADATA: Stores per origin metadata for cookie controls.
  • CEF_CONTENT_SETTING_TYPE_TPCD_HEURISTICS_GRANTS: Content Setting for temporary 3PC accesses granted by user behavior heuristics.
  • CEF_CONTENT_SETTING_TYPE_TPCD_METADATA_GRANTS: Content Setting for 3PC accesses granted by metadata delivered via the component updater service. This type will only be used when `net::features::kTpcdMetadataGrants` is enabled.
  • CEF_CONTENT_SETTING_TYPE_TPCD_TRIAL: Content Setting for 3PC accesses granted via 3PC deprecation trial.
  • CEF_CONTENT_SETTING_TYPE_TOP_LEVEL_TPCD_TRIAL: Content Setting for 3PC accesses granted via top-level 3PC deprecation trial. Similar to TPCD_TRIAL, but applicable at the page-level for the lifetime of the page that served the token, rather than being specific to a requesting-origin/top-level-site combination and persistent.
  • CEF_CONTENT_SETTING_TYPE_AUTO_PICTURE_IN_PICTURE: Content setting used to indicate whether entering picture-in-picture automatically should be enabled.
  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_EXTENDED_PERMISSION: Whether user has opted into keeping file/directory permissions persistent between visits for a given origin. When enabled, permission metadata stored under |FILE_SYSTEM_ACCESS_CHOOSER_DATA| can auto-grant incoming permission request.
  • CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_RESTORE_PERMISSION: Whether the FSA Persistent Permissions restore prompt is eligible to be shown to the user, for a given origin.
  • CEF_CONTENT_SETTING_TYPE_CAPTURED_SURFACE_CONTROL: Whether an application capturing another tab, may scroll and zoom the captured tab.
  • CEF_CONTENT_SETTING_TYPE_SMART_CARD_GUARD: Content setting for access to smart card readers. The "guard" content setting stores whether to allow sites to access the Smart Card API.
  • CEF_CONTENT_SETTING_TYPE_SMART_CARD_DATA
  • CEF_CONTENT_SETTING_TYPE_WEB_PRINTING: Content settings for access to printers for the Web Printing API.
  • CEF_CONTENT_SETTING_TYPE_NUM_TYPES
TCefContentSettingValues = (...);

Supported content setting values. Should be kept in sync with Chromium's ContentSetting type.

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_content_settings.h">CEF source file: /include/internal/cef_types_content_settings.h (cef_content_setting_values_t))

Values
  • CEF_CONTENT_SETTING_VALUE_DEFAULT = 0
  • CEF_CONTENT_SETTING_VALUE_ALLOW
  • CEF_CONTENT_SETTING_VALUE_BLOCK
  • CEF_CONTENT_SETTING_VALUE_ASK
  • CEF_CONTENT_SETTING_VALUE_SESSION_ONLY
  • CEF_CONTENT_SETTING_VALUE_DETECT_IMPORTANT_CONTENT
  • CEF_CONTENT_SETTING_VALUE_NUM_VALUES
PCefV8ValueArray = array[0..(High(Integer) div SizeOf(Pointer)) - 1] of PCefV8Value;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.