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:
parent
2364c80413
commit
819e546836
@ -694,10 +694,16 @@ const
|
|||||||
CEF_PROXYTYPE_FIXED_SERVERS = 3;
|
CEF_PROXYTYPE_FIXED_SERVERS = 3;
|
||||||
CEF_PROXYTYPE_PAC_SCRIPT = 4;
|
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.
|
// 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_INFO = 0;
|
||||||
CEF_LOG_SEVERITY_WARNING = 1;
|
CEF_LOG_SEVERITY_WARNING = 1;
|
||||||
CEF_LOG_SEVERITY_ERROR = 2;
|
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_DEFAULT_VALUE = 32;
|
||||||
CEF_MAX_CONNECTIONS_PER_PROXY_MIN_VALUE = 7;
|
CEF_MAX_CONNECTIONS_PER_PROXY_MIN_VALUE = 7;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"UpdateLazPackages" : [
|
"UpdateLazPackages" : [
|
||||||
{
|
{
|
||||||
"ForceNotify" : true,
|
"ForceNotify" : true,
|
||||||
"InternalVersion" : 431,
|
"InternalVersion" : 432,
|
||||||
"Name" : "cef4delphi_lazarus.lpk",
|
"Name" : "cef4delphi_lazarus.lpk",
|
||||||
"Version" : "105.3.38.0"
|
"Version" : "105.3.38.0"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user