type TCefResourceBundleHandlerOwn = class(TCefBaseRefCountedOwn, ICefResourceBundleHandler)
This item has no description.
function GetLocalizedString(stringid: Integer; var stringVal: ustring): Boolean; virtual; abstract; |
|
function GetDataResource(resourceId: Integer; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract; |
|
function GetDataResourceForScale(resourceId: Integer; scaleFactor: TCefScaleFactor; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract; |
|
procedure RemoveReferences; virtual; abstract; |
|
constructor Create; virtual; |
function GetLocalizedString(stringid: Integer; var stringVal: ustring): Boolean; virtual; abstract; |
|
This item has no description. Showing description inherited from ICefResourceBundleHandler.GetLocalizedString. Called to retrieve a localized translation for the specified |string_id|. To provide the translation set |string| to the translation string and return true (1). To use the default translation return false (0). Include cef_pack_strings.h for a listing of valid string ID values. |
function GetDataResource(resourceId: Integer; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract; |
|
This item has no description. Showing description inherited from ICefResourceBundleHandler.GetDataResource. Called to retrieve data for the specified scale independent |resource_id|. To provide the resource data set |data| and |data_size| to the data pointer and size respectively and return true (1). To use the default resource data return false (0). The resource data will not be copied and must remain resident in memory. Include cef_pack_resources.h for a listing of valid resource ID values. |
function GetDataResourceForScale(resourceId: Integer; scaleFactor: TCefScaleFactor; var data: Pointer; var dataSize: NativeUInt): Boolean; virtual; abstract; |
|
This item has no description. Showing description inherited from ICefResourceBundleHandler.GetDataResourceForScale. Called to retrieve data for the specified |resource_id| nearest the scale factor |scale_factor|. To provide the resource data set |data| and |data_size| to the data pointer and size respectively and return true (1). To use the default resource data return false (0). The resource data will not be copied and must remain resident in memory. Include cef_pack_resources.h for a listing of valid resource ID values. |
procedure RemoveReferences; virtual; abstract; |
|
This item has no description. Showing description inherited from ICefResourceBundleHandler.RemoveReferences. Custom procedure to clear all references. |
constructor Create; virtual; |
|
This item has no description. |