You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Bug fix #222
- 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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user