1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-12 22:07:39 +02:00

Update to CEF 85.2.11

This commit is contained in:
Salvador Díaz Fau
2020-08-29 11:48:12 +02:00
parent cfeee87c30
commit d444bb29e1
74 changed files with 4181 additions and 242 deletions

View File

@ -55,7 +55,6 @@ type
TCefMediaSourceRef = class(TCefBaseRefCountedRef, ICefMediaSource)
protected
function GetId : ustring;
function IsValid : boolean;
function IsCastSource : boolean;
function IsDialSource : boolean;
public
@ -72,11 +71,6 @@ begin
Result := CefStringFreeAndGet(PCefMediaSource(FData)^.get_id(PCefMediaSource(FData)));
end;
function TCefMediaSourceRef.IsValid: Boolean;
begin
Result := PCefMediaSource(FData)^.is_valid(PCefMediaSource(FData)) <> 0;
end;
function TCefMediaSourceRef.IsCastSource: Boolean;
begin
Result := PCefMediaSource(FData)^.is_cast_source(PCefMediaSource(FData)) <> 0;