You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-12 22:07:39 +02:00
Update to CEF 3.3163.1670.g934eaba
- Added 2 overloaded versions of TChromium.RetrieveHTML - Modified TCefBrowserRef.GetFrameIdentifiers and TCefBrowserRef.GetFrameNames functions
This commit is contained in:
@ -105,6 +105,7 @@ type
|
||||
TCefv8ValueArray = array of ICefv8Value;
|
||||
TCefX509CertificateArray = array of ICefX509Certificate;
|
||||
TCefBinaryValueArray = array of ICefBinaryValue;
|
||||
TCefFrameIdentifierArray = array of int64;
|
||||
|
||||
TOnPdfPrintFinishedProc = {$IFDEF DELPHI12_UP}reference to{$ENDIF} procedure(const path: ustring; ok: Boolean);
|
||||
TCefDomVisitorProc = {$IFDEF DELPHI12_UP}reference to{$ENDIF} procedure(const document: ICefDomDocument);
|
||||
@ -266,8 +267,8 @@ type
|
||||
function GetFrameByident(identifier: Int64): ICefFrame;
|
||||
function GetFrame(const name: ustring): ICefFrame;
|
||||
function GetFrameCount: NativeUInt;
|
||||
procedure GetFrameIdentifiers(count: PNativeUInt; identifiers: PInt64);
|
||||
procedure GetFrameNames(const aFrameNames : TStrings);
|
||||
function GetFrameIdentifiers(var aFrameCount : NativeUInt; var aFrameIdentifierArray : TCefFrameIdentifierArray) : boolean;
|
||||
function GetFrameNames(var aFrameNames : TStrings) : boolean;
|
||||
function SendProcessMessage(targetProcess: TCefProcessId; const ProcMessage: ICefProcessMessage): Boolean;
|
||||
property MainFrame: ICefFrame read GetMainFrame;
|
||||
property FocusedFrame: ICefFrame read GetFocusedFrame;
|
||||
|
Reference in New Issue
Block a user