2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFSchemeRegistrar;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 18:56:41 +01:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-03-16 19:09:42 +01:00
|
|
|
uCEFBaseScopedWrapper, uCEFTypes;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCefSchemeRegistrarRef = class(TCEFBaseScopedWrapperRef)
|
2017-01-27 16:37:51 +01:00
|
|
|
public
|
2019-03-15 17:17:14 +01:00
|
|
|
function AddCustomScheme(const schemeName: ustring; options : TCefSchemeOptions): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions;
|
|
|
|
|
2019-03-15 17:17:14 +01:00
|
|
|
function TCefSchemeRegistrarRef.AddCustomScheme(const schemeName : ustring;
|
|
|
|
options : TCefSchemeOptions): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
2018-05-12 14:50:54 +02:00
|
|
|
TempName : TCefString;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
TempName := CefString(schemeName);
|
|
|
|
Result := PCefSchemeRegistrar(FData)^.add_custom_scheme(PCefSchemeRegistrar(FData),
|
|
|
|
@TempName,
|
2019-03-15 17:17:14 +01:00
|
|
|
options) <> 0;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|