1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00
- Fixed ICEFPostData and TCefPostData declarations
- Fixed CustomAbsolutePath to convert the relative path to absolute path even when CustomPathCanonicalize fails.
- Added a POST example to the URLRequest demo.
- Updated the PostInspectorBrowser demo for the new ICEFPostData decalrations.
This commit is contained in:
Salvador Díaz Fau
2019-09-25 17:23:16 +02:00
parent 7ab6b9e9c6
commit 437c3bf4c0
17 changed files with 1013 additions and 441 deletions

View File

@@ -143,11 +143,13 @@ type
ICefMenuButton = interface;
ICefUrlRequest = interface;
ICefAudioHandler = interface;
ICefPostDataElement = interface;
TCefv8ValueArray = array of ICefv8Value;
TCefX509CertificateArray = array of ICefX509Certificate;
TCefBinaryValueArray = array of ICefBinaryValue;
TCefFrameIdentifierArray = array of int64;
TCefPostDataElementArray = array of ICefPostDataElement;
@@ -616,10 +618,10 @@ type
['{1E677630-9339-4732-BB99-D6FE4DE4AEC0}']
function IsReadOnly: Boolean;
function HasExcludedElements: Boolean;
function GetCount: NativeUInt;
function GetElements(Count: NativeUInt): IInterfaceList; // list of ICefPostDataElement
function RemoveElement(const element: ICefPostDataElement): Integer;
function AddElement(const element: ICefPostDataElement): Integer;
function GetElementCount: NativeUInt;
procedure GetElements(elementsCount: NativeUInt; var elements: TCefPostDataElementArray);
function RemoveElement(const element: ICefPostDataElement): Boolean;
function AddElement(const element: ICefPostDataElement): Boolean;
procedure RemoveElements;
end;