Interface ICefApp

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type ICefApp = interface(ICefBaseRefCounted)

Description

Implement this interface to provide handler implementations. Methods will be called by the process and/or thread indicated.

UNKNOWN

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_app_capi.h">CEF source file: /include/capi/cef_app_capi.h (cef_app_t))

Hierarchy

Overview

Methods

Public procedure OnBeforeCommandLineProcessing(const processType: ustring; const commandLine: ICefCommandLine);
Public procedure OnRegisterCustomSchemes(const registrar: TCefSchemeRegistrarRef);
Public procedure GetResourceBundleHandler(var aHandler : ICefResourceBundleHandler);
Public procedure GetBrowserProcessHandler(var aHandler : ICefBrowserProcessHandler);
Public procedure GetRenderProcessHandler(var aHandler : ICefRenderProcessHandler);
Public procedure RemoveReferences;

Description

Methods

Public procedure OnBeforeCommandLineProcessing(const processType: ustring; const commandLine: ICefCommandLine);

Provides an opportunity to view and/or modify command-line arguments before processing by CEF and Chromium. The |process_type| value will be NULL for the browser process. Do not keep a reference to the ICefCommandLine object passed to this function. The TCefSettings.command_line_args_disabled value can be used to start with an NULL command-line object. Any values specified in CefSettings that equate to command-line arguments will be set before this function is called. Be cautious when using this function to modify command-line arguments for non-browser processes as this may result in undefined behavior including crashes.

Attributes
GUID['{970CA670-9070-4642-B188-7D8A22DAEED4}']
Public procedure OnRegisterCustomSchemes(const registrar: TCefSchemeRegistrarRef);

Provides an opportunity to register custom schemes. Do not keep a reference to the |registrar| object. This function is called on the main thread for each process and the registered schemes should be the same across all processes.

Public procedure GetResourceBundleHandler(var aHandler : ICefResourceBundleHandler);

Return the handler for resource bundle events. If TCefSettings.pack_loading_disabled is true (1) a handler must be returned. If no handler is returned resources will be loaded from pack files. This function is called by the browser and render processes on multiple threads.

Public procedure GetBrowserProcessHandler(var aHandler : ICefBrowserProcessHandler);

Return the handler for functionality specific to the browser process. This function is called on multiple threads in the browser process.

Public procedure GetRenderProcessHandler(var aHandler : ICefRenderProcessHandler);

Return the handler for functionality specific to the render process. This function is called on the render process main thread.

Public procedure RemoveReferences;

Custom procedure to clear all references.


Generated by PasDoc 0.16.0-snapshot.