1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-12 22:07:39 +02:00

Update to CEF 109.1.1

Added GlobalCEFApp.NetLogEnabled
Added GlobalCEFApp.NetLogFile
Added GlobalCEFApp.NetLogCaptureMode
Fixed WindowInfoAsChild for GTK3 in Linux
This commit is contained in:
salvadordf
2023-01-22 09:15:40 +01:00
parent addab9ddb4
commit ed9011d4d8
6 changed files with 44 additions and 15 deletions

View File

@ -504,6 +504,16 @@ type
hpDisableNonProxiedUDP
);
// Values used by the --net-log-capture-mode command line switch.
// Sets the granularity of events to capture in the network log.
// https://source.chromium.org/chromium/chromium/src/+/main:content/browser/network_service_instance_impl.cc
// https://source.chromium.org/chromium/chromium/src/+/main:net/log/net_log_capture_mode.h
TCefNetLogCaptureMode = (
nlcmDefault,
nlcmIncludeSensitive,
nlcmEverything
);
// Used by TCEFFileDialogInfo
TCEFDialogType = (dtOpen, dtOpenMultiple, dtOpenFolder, dtSave);