You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Update to CEF 122.1.8
This commit is contained in:
@@ -36,7 +36,7 @@ type
|
||||
function IsMain: Boolean;
|
||||
function IsFocused: Boolean;
|
||||
function GetName: ustring;
|
||||
function GetIdentifier: Int64;
|
||||
function GetIdentifier: ustring;
|
||||
function GetParent: ICefFrame;
|
||||
function GetUrl: ustring;
|
||||
function GetBrowser: ICefBrowser;
|
||||
@@ -88,9 +88,9 @@ begin
|
||||
Result := TCefBrowserRef.UnWrap(PCefFrame(FData)^.get_browser(PCefFrame(FData)));
|
||||
end;
|
||||
|
||||
function TCefFrameRef.GetIdentifier: Int64;
|
||||
function TCefFrameRef.GetIdentifier: ustring;
|
||||
begin
|
||||
Result := PCefFrame(FData)^.get_identifier(PCefFrame(FData));
|
||||
Result := CefStringFreeAndGet(PCefFrame(FData)^.get_identifier(PCefFrame(FData)));
|
||||
end;
|
||||
|
||||
function TCefFrameRef.GetName: ustring;
|
||||
|
||||
Reference in New Issue
Block a user