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

Fixed incorrect type definitions

Fixed TCefCustomStringList.GetHandle return value type
This commit is contained in:
Salvador Díaz Fau
2024-06-14 12:03:35 +02:00
parent 0ada3d1ba9
commit e02e101533
6 changed files with 43 additions and 40 deletions

View File

@ -53,9 +53,9 @@ type
procedure Chromium1BeforeClose(Sender: TObject; const browser: ICefBrowser); procedure Chromium1BeforeClose(Sender: TObject; const browser: ICefBrowser);
procedure Chromium1BeforeContextMenu(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; const model: ICefMenuModel); procedure Chromium1BeforeContextMenu(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; const model: ICefMenuModel);
procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction); procedure Chromium1Close(Sender: TObject; const browser: ICefBrowser; var aAction : TCefCloseBrowserAction);
procedure Chromium1ContextMenuCommand(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; commandId: Integer; eventFlags: Cardinal; out Result: Boolean); procedure Chromium1ContextMenuCommand(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; const params: ICefContextMenuParams; commandId: Integer; eventFlags: TCefEventFlags; out Result: Boolean);
procedure Chromium1LoadEnd(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; httpStatusCode: Integer); procedure Chromium1LoadEnd(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; httpStatusCode: Integer);
procedure Chromium1LoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); procedure Chromium1LoadError(Sender: TObject; const browser: ICefBrowser; const frame: ICefFrame; errorCode: TCefErrorCode; const errorText, failedUrl: ustring);
procedure Chromium1StatusMessage(Sender: TObject; const browser: ICefBrowser; const value: ustring); procedure Chromium1StatusMessage(Sender: TObject; const browser: ICefBrowser; const value: ustring);
procedure Chromium1TitleChange(Sender: TObject; const browser: ICefBrowser; const title: ustring); procedure Chromium1TitleChange(Sender: TObject; const browser: ICefBrowser; const title: ustring);
@ -231,7 +231,7 @@ end;
procedure TMiniBrowserFrm.Chromium1ContextMenuCommand(Sender: TObject; procedure TMiniBrowserFrm.Chromium1ContextMenuCommand(Sender: TObject;
const browser: ICefBrowser; const frame: ICefFrame; const browser: ICefBrowser; const frame: ICefFrame;
const params: ICefContextMenuParams; commandId: Integer; const params: ICefContextMenuParams; commandId: Integer;
eventFlags: Cardinal; out Result: Boolean); eventFlags: TCefEventFlags; out Result: Boolean);
begin begin
Result := False; Result := False;
@ -271,7 +271,7 @@ begin
end; end;
procedure TMiniBrowserFrm.Chromium1LoadError(Sender: TObject; procedure TMiniBrowserFrm.Chromium1LoadError(Sender: TObject;
const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const browser: ICefBrowser; const frame: ICefFrame; errorCode: TCefErrorCode;
const errorText, failedUrl: ustring); const errorText, failedUrl: ustring);
var var
TempString : string; TempString : string;

View File

@ -682,6 +682,7 @@ var
TempResult : HRESULT; TempResult : HRESULT;
TempFormatArray : TOLEFormatArray; TempFormatArray : TOLEFormatArray;
TempMediumArray : TOLEMediumArray; TempMediumArray : TOLEMediumArray;
TempDragOps : TCefDragOperations;
i : integer; i : integer;
begin begin
Result := DRAG_OPERATION_NONE; Result := DRAG_OPERATION_NONE;
@ -711,7 +712,9 @@ begin
if (TempResult <> DRAGDROP_S_DROP) then TempResEffect := DROPEFFECT_NONE; if (TempResult <> DRAGDROP_S_DROP) then TempResEffect := DROPEFFECT_NONE;
FCurrentDragData := nil; FCurrentDragData := nil;
DropEffectToDragOperation(TempResEffect, Result); TempDragOps := TCefDragOperations(Result);
DropEffectToDragOperation(TempResEffect, TempDragOps);
Result := TCefDragOperation(TempDragOps);
end; end;
end; end;
end; end;

View File

@ -6648,7 +6648,7 @@ type
/// error text and |failedUrl| is the URL that failed to load. See /// error text and |failedUrl| is the URL that failed to load. See
/// net\base\net_error_list.h for complete descriptions of the error codes. /// net\base\net_error_list.h for complete descriptions of the error codes.
/// </summary> /// </summary>
procedure OnLoadError(const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer; const errorText, failedUrl: ustring); procedure OnLoadError(const browser: ICefBrowser; const frame: ICefFrame; errorCode: TCefErrorCode; const errorText, failedUrl: ustring);
/// <summary> /// <summary>
/// Custom procedure to clear all references. /// Custom procedure to clear all references.
/// </summary> /// </summary>

View File

@ -27,7 +27,7 @@ type
protected protected
FHandle : TCefStringList; FHandle : TCefStringList;
function GetHandle: TCefStringMap; virtual; function GetHandle: TCefStringList; virtual;
/// <summary> /// <summary>
/// Return the number of elements in the string list. /// Return the number of elements in the string list.
/// </summary> /// </summary>
@ -107,7 +107,7 @@ begin
if (FHandle <> nil) then cef_string_list_clear(FHandle); if (FHandle <> nil) then cef_string_list_clear(FHandle);
end; end;
function TCefCustomStringList.GetHandle: TCefStringMap; function TCefCustomStringList.GetHandle: TCefStringList;
begin begin
Result := FHandle; Result := FHandle;
end; end;

View File

@ -484,7 +484,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_id_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_id_t)</see></para>
/// </remarks> /// </remarks>
TCefPlatformThreadId = DWORD; TCefPlatformThreadId = type DWORD;
/// <summary> /// <summary>
/// Platform thread handle. /// Platform thread handle.
@ -492,7 +492,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_handle_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_thread_internal.h">CEF source file: /include/internal/cef_thread_internal.h (cef_platform_thread_handle_t)</see></para>
/// </remarks> /// </remarks>
TCefPlatformThreadHandle = DWORD; TCefPlatformThreadHandle = type DWORD;
/// <summary> /// <summary>
/// Transition type for a request. Made up of one source value and 0 or more /// Transition type for a request. Made up of one source value and 0 or more
@ -502,7 +502,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_transition_type_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_transition_type_t)</see></para>
/// </remarks> /// </remarks>
TCefTransitionType = Cardinal; TCefTransitionType = type Cardinal;
/// <summary> /// <summary>
/// 32-bit ARGB color value, not premultiplied. The color components are always /// 32-bit ARGB color value, not premultiplied. The color components are always
@ -511,7 +511,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_color_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_color_t)</see></para>
/// </remarks> /// </remarks>
TCefColor = Cardinal; TCefColor = type Cardinal;
/// <summary> /// <summary>
/// Supported error code values. /// Supported error code values.
@ -533,7 +533,7 @@ type
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_errorcode_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_errorcode_t)</see></para>
/// <para><see href="https://chromium.googlesource.com/chromium/src/+/master/net/base/net_error_list.h">For the complete list of error values see include/base/internal/cef_net_error_list.h which includes this Chromium source file /net/base/net_error_list.h</see></para> /// <para><see href="https://chromium.googlesource.com/chromium/src/+/master/net/base/net_error_list.h">For the complete list of error values see include/base/internal/cef_net_error_list.h which includes this Chromium source file /net/base/net_error_list.h</see></para>
/// </remarks> /// </remarks>
TCefErrorCode = Integer; TCefErrorCode = type Integer;
/// <summary> /// <summary>
/// Supported certificate status code values. See net\cert\cert_status_flags.h /// Supported certificate status code values. See net\cert\cert_status_flags.h
@ -544,7 +544,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cert_status_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cert_status_t)</see></para>
/// </remarks> /// </remarks>
TCefCertStatus = Integer; TCefCertStatus = type Integer;
/// <summary> /// <summary>
/// Supported SSL version values. /// Supported SSL version values.
@ -554,7 +554,7 @@ type
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_version_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_version_t)</see></para>
/// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:net/ssl/ssl_connection_status_flags.h">See net/ssl/ssl_connection_status_flags.h for more information.</see></para> /// <para><see href="https://source.chromium.org/chromium/chromium/src/+/main:net/ssl/ssl_connection_status_flags.h">See net/ssl/ssl_connection_status_flags.h for more information.</see></para>
/// </remarks> /// </remarks>
TCefSSLVersion = integer; TCefSSLVersion = type integer;
/// <summary> /// <summary>
/// CEF string maps are a set of key/value string pairs. /// CEF string maps are a set of key/value string pairs.
@ -562,7 +562,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_list.h">CEF source file: /include/internal/cef_string_list.h (cef_string_list_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_list.h">CEF source file: /include/internal/cef_string_list.h (cef_string_list_t)</see></para>
/// </remarks> /// </remarks>
TCefStringList = Pointer; TCefStringList = type Pointer;
/// <summary> /// <summary>
/// CEF string maps are a set of key/value string pairs. /// CEF string maps are a set of key/value string pairs.
@ -570,7 +570,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_map.h">CEF source file: /include/internal/cef_string_map.h (cef_string_map_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_map.h">CEF source file: /include/internal/cef_string_map.h (cef_string_map_t)</see></para>
/// </remarks> /// </remarks>
TCefStringMap = Pointer; TCefStringMap = type Pointer;
/// <summary> /// <summary>
/// CEF string multimaps are a set of key/value string pairs. /// CEF string multimaps are a set of key/value string pairs.
@ -579,7 +579,7 @@ type
/// <remarks> /// <remarks>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_multimap.h">CEF source file: /include/internal/cef_string_multimap.h (cef_string_multimap_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_string_multimap.h">CEF source file: /include/internal/cef_string_multimap.h (cef_string_multimap_t)</see></para>
/// </remarks> /// </remarks>
TCefStringMultimap = Pointer; TCefStringMultimap = type Pointer;
/// <summary> /// <summary>
/// URI unescape rules passed to CefURIDecode(). /// URI unescape rules passed to CefURIDecode().
@ -588,7 +588,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_uri_unescape_rule_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_uri_unescape_rule_t)</see></para>
/// </remarks> /// </remarks>
TCefUriUnescapeRule = Integer; TCefUriUnescapeRule = type Integer;
/// <summary> /// <summary>
/// DOM event category flags. /// DOM event category flags.
@ -597,7 +597,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_event_category_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_dom_event_category_t)</see></para>
/// </remarks> /// </remarks>
TCefDomEventCategory = Integer; TCefDomEventCategory = type Integer;
/// <summary> /// <summary>
/// Supported event bit flags. /// Supported event bit flags.
@ -606,7 +606,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_event_flags_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_event_flags_t)</see></para>
/// </remarks> /// </remarks>
TCefEventFlags = Cardinal; TCefEventFlags = type Cardinal;
/// <summary> /// <summary>
/// "Verb" of a drag-and-drop operation as negotiated between the source and /// "Verb" of a drag-and-drop operation as negotiated between the source and
@ -617,8 +617,8 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_drag_operations_mask_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_drag_operations_mask_t)</see></para>
/// </remarks> /// </remarks>
TCefDragOperations = Cardinal; TCefDragOperations = type Cardinal;
TCefDragOperation = Cardinal; TCefDragOperation = type Cardinal;
/// <summary> /// <summary>
/// V8 access control values. /// V8 access control values.
@ -627,7 +627,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_accesscontrol_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_accesscontrol_t)</see></para>
/// </remarks> /// </remarks>
TCefV8AccessControls = Cardinal; TCefV8AccessControls = type Cardinal;
/// <summary> /// <summary>
/// V8 property attribute values. /// V8 property attribute values.
@ -636,7 +636,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_propertyattribute_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_v8_propertyattribute_t)</see></para>
/// </remarks> /// </remarks>
TCefV8PropertyAttributes = Cardinal; TCefV8PropertyAttributes = type Cardinal;
/// <summary> /// <summary>
/// Flags used to customize the behavior of CefURLRequest. /// Flags used to customize the behavior of CefURLRequest.
@ -645,7 +645,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_urlrequest_flags_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_urlrequest_flags_t)</see></para>
/// </remarks> /// </remarks>
TCefUrlRequestFlags = Cardinal; TCefUrlRequestFlags = type Cardinal;
/// <summary> /// <summary>
/// Supported context menu type flags. /// Supported context menu type flags.
@ -654,7 +654,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_type_flags_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_type_flags_t)</see></para>
/// </remarks> /// </remarks>
TCefContextMenuTypeFlags = Cardinal; TCefContextMenuTypeFlags = type Cardinal;
/// <summary> /// <summary>
/// Supported context menu media state bit flags. These constants match their /// Supported context menu media state bit flags. These constants match their
@ -665,7 +665,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_media_state_flags_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_media_state_flags_t)</see></para>
/// </remarks> /// </remarks>
TCefContextMenuMediaStateFlags = Cardinal; TCefContextMenuMediaStateFlags = type Cardinal;
/// <summary> /// <summary>
/// Supported context menu edit state bit flags. These constants match their /// Supported context menu edit state bit flags. These constants match their
@ -676,7 +676,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_edit_state_flags_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_context_menu_edit_state_flags_t)</see></para>
/// </remarks> /// </remarks>
TCefContextMenuEditStateFlags = Cardinal; TCefContextMenuEditStateFlags = type Cardinal;
/// <summary> /// <summary>
/// Options that can be passed to CefWriteJSON. /// Options that can be passed to CefWriteJSON.
@ -685,7 +685,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_json_writer_options_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_json_writer_options_t)</see></para>
/// </remarks> /// </remarks>
TCefJsonWriterOptions = Cardinal; TCefJsonWriterOptions = type Cardinal;
/// <summary> /// <summary>
/// Supported SSL content status flags. See content/public/common/ssl_status.h /// Supported SSL content status flags. See content/public/common/ssl_status.h
@ -695,7 +695,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_content_status_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_ssl_content_status_t)</see></para>
/// </remarks> /// </remarks>
TCefSSLContentStatus = Cardinal; TCefSSLContentStatus = type Cardinal;
/// <summary> /// <summary>
/// Log severity levels. /// Log severity levels.
@ -704,7 +704,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_log_severity_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_log_severity_t)</see></para>
/// </remarks> /// </remarks>
TCefLogSeverity = Cardinal; TCefLogSeverity = type Cardinal;
/// <summary> /// <summary>
/// Supported file dialog modes. /// Supported file dialog modes.
@ -713,7 +713,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_file_dialog_mode_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_file_dialog_mode_t)</see></para>
/// </remarks> /// </remarks>
TCefFileDialogMode = Cardinal; TCefFileDialogMode = type Cardinal;
/// <summary> /// <summary>
/// Print job duplex mode values. /// Print job duplex mode values.
@ -722,7 +722,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_duplex_mode_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_duplex_mode_t)</see></para>
/// </remarks> /// </remarks>
TCefDuplexMode = Integer; TCefDuplexMode = type Integer;
/// <summary> /// <summary>
/// Configuration options for registering a custom scheme. /// Configuration options for registering a custom scheme.
@ -732,7 +732,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_scheme_options_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_scheme_options_t)</see></para>
/// </remarks> /// </remarks>
TCefSchemeOptions = Integer; TCefSchemeOptions = type Integer;
/// <summary> /// <summary>
/// Result codes for ICefMediaRouter.CreateRoute. Should be kept in sync with /// Result codes for ICefMediaRouter.CreateRoute. Should be kept in sync with
@ -742,7 +742,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_route_create_result_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_media_route_create_result_t)</see></para>
/// </remarks> /// </remarks>
TCefMediaRouterCreateResult = Integer; TCefMediaRouterCreateResult = type Integer;
/// <summary> /// <summary>
/// Cookie priority values. /// Cookie priority values.
@ -751,7 +751,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cookie_priority_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_cookie_priority_t)</see></para>
/// </remarks> /// </remarks>
TCefCookiePriority = Integer; TCefCookiePriority = type Integer;
/// <summary> /// <summary>
/// Represents commands available to TextField. /// Represents commands available to TextField.
@ -760,7 +760,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_text_field_commands_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_text_field_commands_t)</see></para>
/// </remarks> /// </remarks>
TCefTextFieldCommands = Integer; TCefTextFieldCommands = type Integer;
/// <summary> /// <summary>
/// Chrome toolbar types. /// Chrome toolbar types.
@ -769,7 +769,7 @@ type
/// <para>See the uCEFConstants unit for all possible values.</para> /// <para>See the uCEFConstants unit for all possible values.</para>
/// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_chrome_toolbar_type_t)</see></para> /// <para><see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_chrome_toolbar_type_t)</see></para>
/// </remarks> /// </remarks>
TCefChromeToolbarType = Integer; TCefChromeToolbarType = type Integer;
/// <summary> /// <summary>
/// Docking modes supported by ICefWindow.AddOverlay. /// Docking modes supported by ICefWindow.AddOverlay.

View File

@ -2,7 +2,7 @@
"UpdateLazPackages" : [ "UpdateLazPackages" : [
{ {
"ForceNotify" : true, "ForceNotify" : true,
"InternalVersion" : 612, "InternalVersion" : 613,
"Name" : "cef4delphi_lazarus.lpk", "Name" : "cef4delphi_lazarus.lpk",
"Version" : "125.0.22" "Version" : "125.0.22"
} }