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

Update to CEF 116.0.13

This commit is contained in:
salvadordf
2023-08-18 12:05:45 +02:00
parent c9efd9ec23
commit c711266cb2
7 changed files with 63 additions and 64 deletions

View File

@ -3,15 +3,15 @@ CEF4Delphi is an open source project created by Salvador Díaz Fau to embed Chro
CEF4Delphi is based on DCEF3 and fpCEF3. The original license of those projects still applies to CEF4Delphi. Read the license terms in the LICENSE.md file. CEF4Delphi is based on DCEF3 and fpCEF3. The original license of those projects still applies to CEF4Delphi. Read the license terms in the LICENSE.md file.
CEF4Delphi uses CEF 115.3.15 which includes Chromium 115.0.5790.173. CEF4Delphi uses CEF 116.0.13 which includes Chromium 116.0.5845.97.
The CEF binaries used by CEF4Delphi are available for download at Spotify : The CEF binaries used by CEF4Delphi are available for download at Spotify :
* [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_windows32.tar.bz2) * [Windows 32 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_windows32.tar.bz2)
* [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_windows64.tar.bz2) * [Windows 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_windows64.tar.bz2)
* [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linux64.tar.bz2) * [Linux x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linux64.tar.bz2)
* [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linuxarm.tar.bz2) * [Linux ARM 32 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linuxarm.tar.bz2)
* [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_linuxarm64.tar.bz2) * [Linux ARM 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_linuxarm64.tar.bz2)
* [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_115.3.15%2Bg21130e0%2Bchromium-115.0.5790.173_macosx64.tar.bz2) * [MacOS x86 64 bits](https://cef-builds.spotifycdn.com/cef_binary_116.0.13%2Bg557a56f%2Bchromium-116.0.5845.97_macosx64.tar.bz2)
CEF4Delphi was developed and tested on Delphi 11.3 and it has been tested in Delphi 7, Delphi XE, Delphi 10, Delphi 10.2, Delphi 10.3, Delphi 10.4 and Lazarus 2.2.6/FPC 3.2.2. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components. CEF4Delphi was developed and tested on Delphi 11.3 and it has been tested in Delphi 7, Delphi XE, Delphi 10, Delphi 10.2, Delphi 10.3, Delphi 10.4 and Lazarus 2.2.6/FPC 3.2.2. CEF4Delphi includes VCL, FireMonkey (FMX) and Lazarus components.

Binary file not shown.

View File

@ -21,7 +21,7 @@
</CompilerOptions> </CompilerOptions>
<Description Value="CEF4Delphi is an open source project created by Salvador Díaz Fau to embed Chromium-based browsers in applications made with Delphi or Lazarus/FPC."/> <Description Value="CEF4Delphi is an open source project created by Salvador Díaz Fau to embed Chromium-based browsers in applications made with Delphi or Lazarus/FPC."/>
<License Value="MPL 1.1"/> <License Value="MPL 1.1"/>
<Version Major="115" Minor="3" Release="15"/> <Version Major="116" Release="13"/>
<Files Count="214"> <Files Count="214">
<Item1> <Item1>
<Filename Value="..\source\uCEFAccessibilityHandler.pas"/> <Filename Value="..\source\uCEFAccessibilityHandler.pas"/>

View File

@ -2058,16 +2058,17 @@ const
CEF_PERMISSION_TYPE_GEOLOCATION = 1 shl 8; CEF_PERMISSION_TYPE_GEOLOCATION = 1 shl 8;
CEF_PERMISSION_TYPE_IDLE_DETECTION = 1 shl 9; CEF_PERMISSION_TYPE_IDLE_DETECTION = 1 shl 9;
CEF_PERMISSION_TYPE_MIC_STREAM = 1 shl 10; CEF_PERMISSION_TYPE_MIC_STREAM = 1 shl 10;
CEF_PERMISSION_TYPE_MIDI_SYSEX = 1 shl 11; CEF_PERMISSION_TYPE_MIDI = 1 shl 11;
CEF_PERMISSION_TYPE_MULTIPLE_DOWNLOADS = 1 shl 12; CEF_PERMISSION_TYPE_MIDI_SYSEX = 1 shl 12;
CEF_PERMISSION_TYPE_NOTIFICATIONS = 1 shl 13; CEF_PERMISSION_TYPE_MULTIPLE_DOWNLOADS = 1 shl 13;
CEF_PERMISSION_TYPE_PROTECTED_MEDIA_IDENTIFIER = 1 shl 14; CEF_PERMISSION_TYPE_NOTIFICATIONS = 1 shl 14;
CEF_PERMISSION_TYPE_REGISTER_PROTOCOL_HANDLER = 1 shl 15; CEF_PERMISSION_TYPE_PROTECTED_MEDIA_IDENTIFIER = 1 shl 15;
CEF_PERMISSION_TYPE_SECURITY_ATTESTATION = 1 shl 16; CEF_PERMISSION_TYPE_REGISTER_PROTOCOL_HANDLER = 1 shl 16;
CEF_PERMISSION_TYPE_STORAGE_ACCESS = 1 shl 17; CEF_PERMISSION_TYPE_SECURITY_ATTESTATION = 1 shl 17;
CEF_PERMISSION_TYPE_U2F_API_REQUEST = 1 shl 18; CEF_PERMISSION_TYPE_STORAGE_ACCESS = 1 shl 18;
CEF_PERMISSION_TYPE_VR_SESSION = 1 shl 19; CEF_PERMISSION_TYPE_U2F_API_REQUEST = 1 shl 19;
CEF_PERMISSION_TYPE_WINDOW_MANAGEMENT = 1 shl 20; CEF_PERMISSION_TYPE_VR_SESSION = 1 shl 20;
CEF_PERMISSION_TYPE_WINDOW_MANAGEMENT = 1 shl 21;
/// <summary> /// <summary>
/// Platform API hash. /// Platform API hash.

View File

@ -223,21 +223,21 @@ type
{$IFDEF MSWINDOWS} {$IFDEF MSWINDOWS}
/// <summary> /// <summary>
/// Native Window handle /// Native Window handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_window_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_window_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefWindowHandle = type HWND; TCefWindowHandle = type HWND;
/// <summary> /// <summary>
/// Native Cursor handle /// Native Cursor handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_cursor_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_cursor_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefCursorHandle = type HCURSOR; TCefCursorHandle = type HCURSOR;
/// <summary> /// <summary>
/// Native event handle /// Native event handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_event_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_win.h">CEF source file: /include/internal/cef_types_win.h (cef_event_handle_t)</see></para>
@ -248,21 +248,21 @@ type
{$IFDEF MACOSX} {$IFDEF MACOSX}
{$IFDEF FPC} {$IFDEF FPC}
/// <summary> /// <summary>
/// Native Window handle /// Native Window handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefWindowHandle = type PtrUInt; TCefWindowHandle = type PtrUInt;
/// <summary> /// <summary>
/// Native Cursor handle /// Native Cursor handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefCursorHandle = type PtrUInt; TCefCursorHandle = type PtrUInt;
/// <summary> /// <summary>
/// Native event handle /// Native event handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t)</see></para>
@ -270,21 +270,21 @@ type
TCefEventHandle = type PtrUInt; TCefEventHandle = type PtrUInt;
{$ELSE} {$ELSE}
/// <summary> /// <summary>
/// Native Window handle /// Native Window handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_window_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefWindowHandle = type Pointer; TCefWindowHandle = type Pointer;
/// <summary> /// <summary>
/// Native Cursor handle /// Native Cursor handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_cursor_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefCursorHandle = type Pointer; TCefCursorHandle = type Pointer;
/// <summary> /// <summary>
/// Native event handle /// Native event handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_mac.h">CEF source file: /include/internal/cef_types_mac.h (cef_event_handle_t)</see></para>
@ -296,14 +296,14 @@ type
{$IFDEF LINUX} {$IFDEF LINUX}
{$IFDEF FPC} {$IFDEF FPC}
/// <summary> /// <summary>
/// Native Window handle /// Native Window handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefWindowHandle = type culong; TCefWindowHandle = type culong;
/// <summary> /// <summary>
/// Native Cursor handle /// Native Cursor handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t)</see></para>
@ -311,14 +311,14 @@ type
TCefCursorHandle = type culong; TCefCursorHandle = type culong;
{$ELSE} {$ELSE}
/// <summary> /// <summary>
/// Native Window handle /// Native Window handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_window_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefWindowHandle = type LongWord; TCefWindowHandle = type LongWord;
/// <summary> /// <summary>
/// Native Cursor handle /// Native Cursor handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_cursor_handle_t)</see></para>
@ -326,7 +326,7 @@ type
TCefCursorHandle = type LongWord; TCefCursorHandle = type LongWord;
{$ENDIF} {$ENDIF}
/// <summary> /// <summary>
/// Native event handle /// Native event handle.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_event_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types_linux.h">CEF source file: /include/internal/cef_types_linux.h (cef_event_handle_t)</see></para>
@ -884,18 +884,18 @@ type
end; end;
/// <summary> /// <summary>
/// Action taken after the TChromium.Onclose event /// <para>Action taken after the TChromium.Onclose event.</para>
/// cbaCancel : stop closing the browser /// <para>cbaCancel : stop closing the browser.</para>
/// cbaClose : continue closing the browser /// <para>cbaClose : continue closing the browser.</para>
/// cbaDelay : stop closing the browser momentarily. Used when the application /// <para>cbaDelay : stop closing the browser momentarily. Used when the application
/// needs to execute some custom processes before closing the /// needs to execute some custom processes before closing the
/// browser. This is usually needed to destroy a TCEFWindowParent /// browser. This is usually needed to destroy a TCEFWindowParent
/// in the main thread before closing the browser. /// in the main thread before closing the browser.</para>
/// </summary> /// </summary>
TCefCloseBrowserAction = (cbaClose, cbaDelay, cbaCancel); TCefCloseBrowserAction = (cbaClose, cbaDelay, cbaCancel);
/// <summary> /// <summary>
/// Sub-process types of Chromium /// Sub-process types of Chromium.
/// </summary> /// </summary>
TCefProcessType = (ptBrowser, ptRenderer, ptZygote, ptGPU, ptUtility, ptBroker, ptCrashpad, ptOther); TCefProcessType = (ptBrowser, ptRenderer, ptZygote, ptGPU, ptUtility, ptBroker, ptCrashpad, ptOther);
@ -905,12 +905,12 @@ type
TCefCookiePref = (cpDefault, cpAllow, cpBlock); TCefCookiePref = (cpDefault, cpAllow, cpBlock);
/// <summary> /// <summary>
/// Used by TCefBrowserNavigationTask to navigate in the right CEF thread /// Used by TCefBrowserNavigationTask to navigate in the right CEF thread.
/// </summary> /// </summary>
TCefBrowserNavigation = (bnBack, bnForward, bnReload, bnReloadIgnoreCache, bnStopLoad); TCefBrowserNavigation = (bnBack, bnForward, bnReload, bnReloadIgnoreCache, bnStopLoad);
/// <summary> /// <summary>
/// Status of TCefAplicationCore /// Status of TCefAplicationCore.
/// </summary> /// </summary>
TCefAplicationStatus = (asLoading, TCefAplicationStatus = (asLoading,
asLoaded, asLoaded,
@ -930,7 +930,7 @@ type
TCefProxyScheme = (psHTTP, psSOCKS4, psSOCKS5); TCefProxyScheme = (psHTTP, psSOCKS4, psSOCKS5);
/// <summary> /// <summary>
/// Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin /// Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin.
/// </summary> /// </summary>
TCefClearDataStorageTypes = (cdstAppCache, TCefClearDataStorageTypes = (cdstAppCache,
cdstCookies, cdstCookies,
@ -997,7 +997,7 @@ type
); );
/// <summary> /// <summary>
/// Values used by the battery saver mode state preference /// Values used by the battery saver mode state preference.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h</see></para> /// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h</see></para>
@ -1008,13 +1008,13 @@ type
bsmsEnabledOnBattery = 2, bsmsEnabledOnBattery = 2,
bsmsEnabled = 3, bsmsEnabled = 3,
/// <summary> /// <summary>
/// Custom value used to update the preferences only when there's a non-default value /// Custom value used to update the preferences only when there's a non-default value.
/// </summary> /// </summary>
bsmsDefault = 4 bsmsDefault = 4
); );
/// <summary> /// <summary>
/// Values used by the high efficiency mode state preference /// Values used by the high efficiency mode state preference.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h</see></para> /// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:components/performance_manager/public/user_tuning/prefs.h">components/performance_manager/public/user_tuning/prefs.h</see></para>
@ -1024,18 +1024,18 @@ type
kEnabled = 1, kEnabled = 1,
kEnabledOnTimer = 2, kEnabledOnTimer = 2,
/// <summary> /// <summary>
/// Custom value used to update the preferences only when there's a non-default value /// Custom value used to update the preferences only when there's a non-default value.
/// </summary> /// </summary>
kDefault = 3 kDefault = 3
); );
/// <summary> /// <summary>
/// Used by TCEFFileDialogInfo /// Used by TCEFFileDialogInfo.
/// </summary> /// </summary>
TCEFDialogType = (dtOpen, dtOpenMultiple, dtOpenFolder, dtSave); TCEFDialogType = (dtOpen, dtOpenMultiple, dtOpenFolder, dtSave);
/// <summary> /// <summary>
/// Used by TCefMediaSinkInfo and TCefMediaSourceInfo /// Used by TCefMediaSinkInfo and TCefMediaSourceInfo.
/// </summary> /// </summary>
TCefMediaType = (mtCast, mtDial, mtUnknown); TCefMediaType = (mtCast, mtDial, mtUnknown);
@ -1683,7 +1683,8 @@ type
CEF_TEXT_INPUT_MODE_EMAIL, CEF_TEXT_INPUT_MODE_EMAIL,
CEF_TEXT_INPUT_MODE_NUMERIC, CEF_TEXT_INPUT_MODE_NUMERIC,
CEF_TEXT_INPUT_MODE_DECIMAL, CEF_TEXT_INPUT_MODE_DECIMAL,
CEF_TEXT_INPUT_MODE_SEARCH // CEF_TEXT_INPUT_MODE_MAX = CEF_TEXT_INPUT_MODE_SEARCH CEF_TEXT_INPUT_MODE_SEARCH
{* CEF_TEXT_INPUT_MODE_MAX = CEF_TEXT_INPUT_MODE_SEARCH *}
); );
/// <summary> /// <summary>
@ -1800,9 +1801,9 @@ type
/// Front Height L, Front Height R, Rear Height L, Rear Height R /// Front Height L, Front Height R, Rear Height L, Rear Height R
/// Will be represented as six channels (5.1) due to eight channel limit /// Will be represented as six channels (5.1) due to eight channel limit
/// kMaxConcurrentChannels /// kMaxConcurrentChannels
/// CEF_CHANNEL_LAYOUT_MAX = CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX
/// </summary> /// </summary>
CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX = 33 CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX = 33
{* CEF_CHANNEL_LAYOUT_MAX = CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX *}
); );
/// <summary> /// <summary>
@ -2664,10 +2665,9 @@ type
CEF_CPAIT_VIRTUAL_CARD_MANUAL_FALLBACK, CEF_CPAIT_VIRTUAL_CARD_MANUAL_FALLBACK,
CEF_CPAIT_ZOOM, CEF_CPAIT_ZOOM,
CEF_CPAIT_SAVE_IBAN, CEF_CPAIT_SAVE_IBAN,
/// <summary> CEF_CPAIT_MANDATORY_REAUTH,
/// CEF_CPAIT_MAX_VALUE = CEF_CPAIT_MANDATORY_REAUTH CEF_CPAIT_PRICE_INSIGHTS
/// </summary> {* CEF_CPAIT_MAX_VALUE = CEF_CPAIT_PRICE_INSIGHTS *}
CEF_CPAIT_MANDATORY_REAUTH
); );
/// <summary> /// <summary>
@ -2681,14 +2681,12 @@ type
CEF_CTBT_CAST, CEF_CTBT_CAST,
CEF_CTBT_DOWNLOAD, CEF_CTBT_DOWNLOAD,
CEF_CTBT_SEND_TAB_TO_SELF, CEF_CTBT_SEND_TAB_TO_SELF,
/// <summary>
/// CEF_CTBT_MAX_VALUE = CEF_CTBT_SIDE_PANEL
/// </summary>
CEF_CTBT_SIDE_PANEL CEF_CTBT_SIDE_PANEL
{* CEF_CTBT_MAX_VALUE = CEF_CTBT_SIDE_PANEL *}
); );
/// <summary> /// <summary>
/// Touch handle state /// Touch handle state.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_time.h">CEF source file: /include/internal/cef_time.h (cef_touch_handle_state_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_time.h">CEF source file: /include/internal/cef_time.h (cef_touch_handle_state_t)</see></para>

View File

@ -1,9 +1,9 @@
CEF_SUPPORTED_VERSION_MAJOR = 115; CEF_SUPPORTED_VERSION_MAJOR = 116;
CEF_SUPPORTED_VERSION_MINOR = 3; CEF_SUPPORTED_VERSION_MINOR = 0;
CEF_SUPPORTED_VERSION_RELEASE = 15; CEF_SUPPORTED_VERSION_RELEASE = 13;
CEF_SUPPORTED_VERSION_BUILD = 0; CEF_SUPPORTED_VERSION_BUILD = 0;
CEF_CHROMEELF_VERSION_MAJOR = CEF_SUPPORTED_VERSION_MAJOR; CEF_CHROMEELF_VERSION_MAJOR = CEF_SUPPORTED_VERSION_MAJOR;
CEF_CHROMEELF_VERSION_MINOR = 0; CEF_CHROMEELF_VERSION_MINOR = 0;
CEF_CHROMEELF_VERSION_RELEASE = 5790; CEF_CHROMEELF_VERSION_RELEASE = 5845;
CEF_CHROMEELF_VERSION_BUILD = 173; CEF_CHROMEELF_VERSION_BUILD = 97;

View File

@ -2,9 +2,9 @@
"UpdateLazPackages" : [ "UpdateLazPackages" : [
{ {
"ForceNotify" : true, "ForceNotify" : true,
"InternalVersion" : 506, "InternalVersion" : 507,
"Name" : "cef4delphi_lazarus.lpk", "Name" : "cef4delphi_lazarus.lpk",
"Version" : "115.3.15" "Version" : "116.0.13"
} }
], ],
"UpdatePackageData" : { "UpdatePackageData" : {