Chromium Embedded Framework (CEF)
139.0.1+gce106a3+chromium-139.0.7258.31
|
The sandbox is used to restrict sub-processes (renderer, GPU, etc) from directly accessing system resources. More...
Classes | |
class | CefScopedSandboxInfo |
Manages the life span of a sandbox information object. More... | |
Macros | |
#define | CEF_BOOTSTRAP_EXPORT __declspec(dllexport) |
Functions | |
void * | cef_sandbox_info_create (void) |
Create the sandbox information object for this process. More... | |
void | cef_sandbox_info_destroy (void *sandbox_info) |
Destroy the specified sandbox information object. More... | |
CEF_BOOTSTRAP_EXPORT int | RunWinMain (HINSTANCE hInstance, LPTSTR lpCmdLine, int nCmdShow, void *sandbox_info, cef_version_info_t *version_info) |
Entry point to be implemented by client DLLs using bootstrap.exe for windows (/SUBSYSTEM:WINDOWS) applications. More... | |
CEF_BOOTSTRAP_EXPORT int | RunConsoleMain (int argc, char *argv[], void *sandbox_info, cef_version_info_t *version_info) |
Entry point to be implemented by client DLLs using bootstrapc.exe for console (/SUBSYSTEM:CONSOLE) applications. More... | |
The sandbox is used to restrict sub-processes (renderer, GPU, etc) from directly accessing system resources.
This helps to protect the user from untrusted and potentially malicious Web content. See https://bitbucket.org/chromiumembedded/cef/wiki/SandboxSetup.md for usage details.
#define CEF_BOOTSTRAP_EXPORT __declspec(dllexport) |
void* cef_sandbox_info_create | ( | void | ) |
Create the sandbox information object for this process.
It is safe to create multiple of this object and to destroy the object immediately after passing into the CefExecuteProcess() and/or CefInitialize() functions.
void cef_sandbox_info_destroy | ( | void * | sandbox_info | ) |
Destroy the specified sandbox information object.
CEF_BOOTSTRAP_EXPORT int RunConsoleMain | ( | int | argc, |
char * | argv[], | ||
void * | sandbox_info, | ||
cef_version_info_t * | version_info | ||
) |
Entry point to be implemented by client DLLs using bootstrapc.exe for console (/SUBSYSTEM:CONSOLE) applications.
CEF_BOOTSTRAP_EXPORT int RunWinMain | ( | HINSTANCE | hInstance, |
LPTSTR | lpCmdLine, | ||
int | nCmdShow, | ||
void * | sandbox_info, | ||
cef_version_info_t * | version_info | ||
) |
Entry point to be implemented by client DLLs using bootstrap.exe for windows (/SUBSYSTEM:WINDOWS) applications.