1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2026-04-23 01:13:01 +02:00

Update to CEF 80.1.2

- Added TCEFMediaObserverComponent
- Removed TBufferPanel.OnWrongSize
- Removed TFMXBufferPanel.OnWrongSize
This commit is contained in:
Salvador Díaz Fau
2020-03-29 17:31:42 +02:00
parent beb287e22c
commit 1984ab16ba
61 changed files with 1742 additions and 272 deletions
+6 -6
View File
@@ -320,10 +320,10 @@ begin
Result := Initialized and FServer.IsValidConnection(connection_id);
end;
procedure TCEFServerComponent.SendHttp200response(connection_id : Integer;
const content_type : ustring;
const data : Pointer;
data_size : NativeUInt);
procedure TCEFServerComponent.SendHttp200response( connection_id : Integer;
const content_type : ustring;
const data : Pointer;
data_size : NativeUInt);
begin
if Initialized then FServer.SendHttp200response(connection_id, content_type, data, data_size);
end;
@@ -338,8 +338,8 @@ begin
if Initialized then FServer.SendHttp500response(connection_id, error_message);
end;
procedure TCEFServerComponent.SendHttpResponse(connection_id : Integer;
response_code : Integer;
procedure TCEFServerComponent.SendHttpResponse( connection_id : Integer;
response_code : Integer;
const content_type : ustring;
content_length : int64;
const extra_headers : ICefStringMultimap);