You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-22 22:17:48 +02:00
Added GlobalCEFWorkScheduler and GlobalFMXWorkScheduler global variables
This commit is contained in:
@ -522,8 +522,8 @@ type
|
||||
FILE_DIALOG_OPEN_FOLDER,
|
||||
FILE_DIALOG_SAVE,
|
||||
FILE_DIALOG_TYPE_MASK = $FF,
|
||||
FILE_DIALOG_OVERWRITEPROMPT_FLAG = $01000000,
|
||||
FILE_DIALOG_HIDEREADONLY_FLAG = $02000000
|
||||
FILE_DIALOG_OVERWRITEPROMPT_FLAG = $01000000,
|
||||
FILE_DIALOG_HIDEREADONLY_FLAG = $02000000
|
||||
);
|
||||
|
||||
// /include/internal/cef_types.h (cef_focus_source_t)
|
||||
@ -1074,7 +1074,7 @@ type
|
||||
end;
|
||||
|
||||
TCookie = record
|
||||
name : ustring;
|
||||
name : ustring;
|
||||
value : ustring;
|
||||
domain : ustring;
|
||||
path : ustring;
|
||||
@ -1282,14 +1282,15 @@ type
|
||||
// /include/capi/cef_extension_handler_capi.h (cef_get_extension_resource_callback_t)
|
||||
TCefGetExtensionResourceCallback = record
|
||||
base : TCefBaseRefCounted;
|
||||
cont : procedure(self: PCefGetExtensionResourceCallback; stream: PCefStreamReader); stdcall;
|
||||
cancel : procedure(self: PCefGetExtensionResourceCallback); stdcall;
|
||||
cont : procedure(self: PCefGetExtensionResourceCallback; stream: PCefStreamReader); stdcall;
|
||||
cancel : procedure(self: PCefGetExtensionResourceCallback); stdcall;
|
||||
end;
|
||||
|
||||
// /include/capi/cef_extension_handler_capi.h (cef_extension_handler_t)
|
||||
TCefExtensionHandler = record
|
||||
base : TCefBaseRefCounted;
|
||||
|
||||
|
||||
on_extension_load_failed : procedure(self: PCefExtensionHandler; result: TCefErrorcode); stdcall;
|
||||
on_extension_loaded : procedure(self: PCefExtensionHandler; extension: PCefExtension); stdcall;
|
||||
on_extension_unloaded : procedure(self: PCefExtensionHandler; extension: PCefExtension); stdcall;
|
||||
on_before_background_browser : function(self: PCefExtensionHandler; extension: PCefExtension; const url: PCefString; var client: PCefClient; settings: PCefBrowserSettings) : Integer; stdcall;
|
||||
@ -1302,14 +1303,14 @@ type
|
||||
// /include/capi/cef_extension_capi.h (cef_extension_t)
|
||||
TCefExtension = record
|
||||
base : TCefBaseRefCounted;
|
||||
base : TCefBaseRefCounted;
|
||||
get_identifier : function(self: PCefExtension) : PCefStringUserFree; stdcall;
|
||||
get_path : function(self: PCefExtension) : PCefStringUserFree; stdcall;
|
||||
get_manifest : function(self: PCefExtension) : PCefDictionaryValue; stdcall;
|
||||
is_same : function(self, that: PCefExtension) : Integer; stdcall;
|
||||
get_handler : function(self: PCefExtension) : PCefExtensionHandler; stdcall;
|
||||
get_loader_context : function(self: PCefExtension) : PCefRequestContext; stdcall;
|
||||
is_loaded : function(self: PCefExtension) : Integer; stdcall;
|
||||
get_identifier : function(self: PCefExtension) : PCefStringUserFree; stdcall;
|
||||
get_path : function(self: PCefExtension) : PCefStringUserFree; stdcall;
|
||||
get_manifest : function(self: PCefExtension) : PCefDictionaryValue; stdcall;
|
||||
is_same : function(self, that: PCefExtension) : Integer; stdcall;
|
||||
get_handler : function(self: PCefExtension) : PCefExtensionHandler; stdcall;
|
||||
get_loader_context : function(self: PCefExtension) : PCefRequestContext; stdcall;
|
||||
is_loaded : function(self: PCefExtension) : Integer; stdcall;
|
||||
unload : procedure(self: PCefExtension); stdcall;
|
||||
end;
|
||||
|
||||
// /include/capi/cef_load_handler_capi.h (cef_load_handler_t)
|
||||
|
Reference in New Issue
Block a user