type TCefExtensionRef = class(TCefBaseRefCountedRef, ICefExtension)
This item has no description.
function GetIdentifier: ustring; |
|
function GetPath: ustring; |
|
function GetManifest: ICefDictionaryValue; |
|
function IsSame(const that : ICefExtension) : boolean; |
|
function GetHandler: ICefExtensionHandler; |
|
function GetLoaderContext: ICefRequestContext; |
|
function IsLoaded: boolean; |
|
procedure unload; |
|
function GetPopup(const aParent : ustring) : ustring; |
|
function GetIcon(const aParent : ustring) : ustring; |
|
function GetBrowserActionPopup: ustring; |
|
function GetBrowserActionIcon: ustring; |
|
function GetPageActionPopup: ustring; |
|
function GetPageActionIcon: ustring; |
|
function GetOptionsPage: ustring; |
|
function GetOptionsUIPage: ustring; |
|
function GetBackgroundPage: ustring; |
|
function GetURL: ustring; |
|
class function UnWrap(data: Pointer): ICefExtension; |
function GetIdentifier: ustring; |
|
This item has no description. Showing description inherited from ICefExtension.GetIdentifier. Returns the unique extension identifier. This is calculated based on the extension public key, if available, or on the extension path. See https://developer.chrome.com/extensions/manifest/key for details. |
function GetPath: ustring; |
|
This item has no description. Showing description inherited from ICefExtension.GetPath. Returns the absolute path to the extension directory on disk. This value will be prefixed with PK_DIR_RESOURCES if a relative path was passed to ICefRequestContext.LoadExtension. |
function GetManifest: ICefDictionaryValue; |
|
This item has no description. Showing description inherited from ICefExtension.GetManifest. Returns the extension manifest contents as a ICefDictionaryValue object. See https://developer.chrome.com/extensions/manifest for details. |
function IsSame(const that : ICefExtension) : boolean; |
|
This item has no description. Showing description inherited from ICefExtension.IsSame. Returns true (1) if this object is the same extension as |that| object. Extensions are considered the same if identifier, path and loader context match. |
function GetHandler: ICefExtensionHandler; |
|
This item has no description. Showing description inherited from ICefExtension.GetHandler. Returns the handler for this extension. Will return NULL for internal extensions or if no handler was passed to ICefRequestContext.LoadExtension. |
function GetLoaderContext: ICefRequestContext; |
|
This item has no description. Showing description inherited from ICefExtension.GetLoaderContext. Returns the request context that loaded this extension. Will return NULL for internal extensions or if the extension has been unloaded. See the ICefRequestContext.LoadExtension documentation for more information about loader contexts. Must be called on the browser process UI thread. |
function IsLoaded: boolean; |
|
This item has no description. Showing description inherited from ICefExtension.IsLoaded. Returns true (1) if this extension is currently loaded. Must be called on the browser process UI thread. |
procedure unload; |
|
This item has no description. Showing description inherited from ICefExtension.unload. Unload this extension if it is not an internal extension and is currently loaded. Will result in a call to ICefExtensionHandler.OnExtensionUnloaded on success. |
function GetPopup(const aParent : ustring) : ustring; |
|
This item has no description. |
function GetIcon(const aParent : ustring) : ustring; |
|
This item has no description. |
function GetBrowserActionPopup: ustring; |
|
This item has no description. |
function GetBrowserActionIcon: ustring; |
|
This item has no description. |
function GetPageActionPopup: ustring; |
|
This item has no description. |
function GetPageActionIcon: ustring; |
|
This item has no description. |
function GetOptionsPage: ustring; |
|
This item has no description. |
function GetOptionsUIPage: ustring; |
|
This item has no description. |
function GetBackgroundPage: ustring; |
|
This item has no description. |
function GetURL: ustring; |
|
This item has no description. |
class function UnWrap(data: Pointer): ICefExtension; |
|
This item has no description. |