Chromium Embedded Framework (CEF)
115.2.0+g096e3eb+chromium-115.0.5790.13
|
The sandbox is used to restrict sub-processes (renderer, GPU, etc) from directly accessing system resources. More...
#include "include/base/cef_build.h"
Classes | |
class | CefScopedSandboxInfo |
Manages the life span of a sandbox information object. More... | |
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... | |
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 http://www.chromium.org/developers/design-documents/sandbox for complete details.
To enable the sandbox on Windows the following requirements must be met:
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.