You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-08-04 21:32:54 +02:00
Update to CEF 138.0.26
This commit is contained in:
@ -129,6 +129,7 @@ type
|
||||
FSearchSuggestEnabled : TCefState;
|
||||
FURLDataCollection : TCefState;
|
||||
FTryingToCloseBrowser : boolean;
|
||||
FStorageNotificationService : TCefState;
|
||||
|
||||
{$IFDEF LINUX}
|
||||
FXDisplay : PXDisplay;
|
||||
@ -2317,6 +2318,10 @@ type
|
||||
/// <para>Disabling this property is a suggested workaround for some autofill crashes in Alloy style.</para>
|
||||
/// </remarks>
|
||||
property URLDataCollection : TCefState read FURLDataCollection write FURLDataCollection;
|
||||
/// <summary>
|
||||
/// Used to disable the "Free up space to continue" notification for the current profile.
|
||||
/// </summary>
|
||||
property StorageNotificationService : TCefState read FStorageNotificationService write FStorageNotificationService;
|
||||
|
||||
published
|
||||
/// <summary>
|
||||
@ -4326,6 +4331,7 @@ begin
|
||||
FSearchSuggestEnabled := STATE_DEFAULT;
|
||||
FURLDataCollection := STATE_DEFAULT;
|
||||
FTryingToCloseBrowser := False;
|
||||
FStorageNotificationService := STATE_DEFAULT;
|
||||
{$IFDEF LINUX}
|
||||
FXDisplay := nil;
|
||||
{$ENDIF}
|
||||
@ -7597,6 +7603,9 @@ begin
|
||||
if (FURLDataCollection <> STATE_DEFAULT) then
|
||||
UpdatePreference(aBrowser, 'url_keyed_anonymized_data_collection.enabled', (FURLDataCollection = STATE_ENABLED));
|
||||
|
||||
if (FStorageNotificationService <> STATE_DEFAULT) then
|
||||
UpdatePreference(aBrowser, 'cef.storage_notification_service_enabled', (FStorageNotificationService = STATE_ENABLED));
|
||||
|
||||
if assigned(FOnPrefsUpdated) then
|
||||
FOnPrefsUpdated(self);
|
||||
end;
|
||||
|
@ -1,6 +1,6 @@
|
||||
CEF_SUPPORTED_VERSION_MAJOR = 138;
|
||||
CEF_SUPPORTED_VERSION_MINOR = 0;
|
||||
CEF_SUPPORTED_VERSION_RELEASE = 25;
|
||||
CEF_SUPPORTED_VERSION_RELEASE = 26;
|
||||
CEF_SUPPORTED_VERSION_BUILD = 0;
|
||||
|
||||
CEF_CHROMEELF_VERSION_MAJOR = CEF_SUPPORTED_VERSION_MAJOR;
|
||||
|
Reference in New Issue
Block a user