1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-02-02 10:25:26 +02:00

Added missing severity log levels used by CefLog

This commit is contained in:
salvadordf 2022-09-12 08:49:12 +02:00
parent 2364c80413
commit 819e546836
2 changed files with 7 additions and 1 deletions

View File

@ -694,10 +694,16 @@ const
CEF_PROXYTYPE_FIXED_SERVERS = 3;
CEF_PROXYTYPE_PAC_SCRIPT = 4;
// /include/base/cef_logging.h (LogSeverity)
// Used in the severity parameter in the 'cef_log' function, also known as 'CefLog' in CEF4Delphi.
// The log severities are used to index into the array of names, see log_severity_names.
// /base/allocator/partition_allocator/partition_alloc_base/logging.h
// /base/logging.cc
CEF_LOG_SEVERITY_VERBOSE = -1;
CEF_LOG_SEVERITY_INFO = 0;
CEF_LOG_SEVERITY_WARNING = 1;
CEF_LOG_SEVERITY_ERROR = 2;
CEF_LOG_SEVERITY_FATAL = 3; // This severity log level causes a crash
CEF_MAX_CONNECTIONS_PER_PROXY_DEFAULT_VALUE = 32;
CEF_MAX_CONNECTIONS_PER_PROXY_MIN_VALUE = 7;

View File

@ -2,7 +2,7 @@
"UpdateLazPackages" : [
{
"ForceNotify" : true,
"InternalVersion" : 431,
"InternalVersion" : 432,
"Name" : "cef4delphi_lazarus.lpk",
"Version" : "105.3.38.0"
}