![]() |
UCefView
|
Represents a Slate widget that hosts a CEF browser. More...
#include <SCefView.h>
Classes | |
struct | FArguments |
Represents the construction arguments of SCefView. More... | |
Public Types | |
using | FOnLoadStateChangedEvent = (*)( const int64& InBrowserId , bool bInIsLoading , bool bInCanGoBack , bool bInCanGoForward ) |
The callback type of loading state changed. | |
using | FOnLoadStartEvent = (*)( const int64& , const FCefFrameId& , bool , int ) |
The callback type of loading starts. | |
using | FOnLoadEndEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , bool bInIsMainFrame , int InHttpStatusCode ) |
The callback type of loading ends. | |
using | FOnLoadErrorEvent = void(*)( const int64& InBrowserId , const FCefFrameId& InFrameId , bool bInIsMainFrame , int InErrorCode , const FString& InErrorMsg , const FString& InOutFailedUrl , bool& InOutHandled ) |
The callback type of loading failed due to error. | |
using | FOnDraggableRegionChangedEvent = void(*)( const FVector4& InDraggableRegion , const FVector4& InNonDraggableRegion ) |
The callback type of draggable region changed. | |
using | FOnAddressChangedEvent = void(*)( const FCefFrameId& InFrameId , const FString& InUrl ) |
The callback type of the address changed. | |
using | FOnTitleChangedEvent = void(*)( const FString& InTitle ) |
The callback type of title changed. | |
using | FOnFaviconUrlChangedEvent = void(*)( const TArray<FString>& InUrls ) |
The callback type of favicon URL changed. | |
using | FOnFullscreenModeChangedEvent = void(*)( bool bInIsFullscreen ) |
The callback type of fullscreen mode changed. | |
using | FOnStatusMessageEvent = void(*)( const FString& InMessage ) |
The callback type of status message changed. | |
using | FOnConsoleMessageEvent = void(*)( const FString& InMessage , int32 InLevel ) |
The callback type of console message from the web content. | |
using | FOnLoadingProgressChangedEvent = void(*)( double InProgress ) |
The callback type of loading progress changed. | |
using | FOnUrlRequestEvent = void(*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InQuery ) |
The callback type of built-in scheme URL access. | |
using | FOnQueryRequestEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const int64& InQueryId , const FString& InRequest ) |
The callback type of new UCefQuery request. | |
using | FOnInvokeMethodEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InMethod , const TArray<TSharedPtr<FJsonValue>>& InArguments ) |
The callback type of invoking method request from web content (JavaScript). | |
using | FOnReportJavascriptResultEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InContext , const TSharedPtr<FJsonValue>& InResult ) |
The callback type of the result of the JavaScript executed with executeJavascriptWithResult returned. | |
using | FOnNativeBrowserCreatedEvent = void(*)() |
The callback type of the native browser window created event. This callback does not work for OSR mode. | |
Public Member Functions | |
SCefView () | |
Constructor. | |
~SCefView () | |
Destructor. | |
void | Construct (const FArguments &InArgs) |
Construct function. | |
void | SetUrl (const FString &InUrl) |
Sets the URL. | |
void | SetSettings (const FCefViewSettings &InSettings) |
Sets the settings. | |
void | CreateNativeBrowser (const UCefContext *InCefContext) |
Creates the native browser. | |
void | DestroyNativeBrowser () |
Destroys the native browser. | |
void | SetVisibility (TAttribute< EVisibility > InVisibility) override |
Sets the visibility. | |
bool | IsDragAndDropEnabled () const |
Gets whether drag and drop is enabled. | |
void | AddLocalFolderResource (const FString &InFolderPath, const FString &InTargetUrl, int32 InPriority=0) |
Adds a URL mapping item with a local web resource directory. | |
void | AddArchiveFileResource (const FString &InArchivePath, const FString &InTargetUrl, const FString &InPassword="", int32 InPriority=0) |
Adds a URL mapping item with a local archive (.zip) file which contains the web resource. | |
int64 | GetBrowserId () |
Gets the browser ID. | |
void | NavigateToUrl (const FString &InTargetUrl) |
Navigates to the URL. | |
bool | BrowserCanGoBack () |
Checks whether the browser can go back. | |
bool | BrowserCanGoForward () |
Checks whether the browser can go forward. | |
void | BrowserGoBack () |
Requires the browser to go back. | |
void | BrowserGoForward () |
Requires the browser to go forward. | |
bool | IsBrowserLoading () |
Checks whether the browser is loading. | |
void | BrowserReload () |
Requires the browser to reload. | |
void | BrowserStopLoad () |
Requires the browser to stop loading. | |
bool | TriggerEventForFrame (const FString &InName, const TArray< TSharedPtr< FJsonValue > > &InArgs, const FCefFrameId &InFrameId) |
Triggers an event for a specific frame. | |
bool | TriggerEventForMainFrame (const FString &InName, const TArray< TSharedPtr< FJsonValue > > &InArgs) |
Triggers an event for the main frame. | |
bool | BroadcastEvent (const FString &InName, const TArray< TSharedPtr< FJsonValue > > &InArgs) |
Broadcasts an event to all frames. | |
bool | ResponseUCefQuery (const int64 InQueryId, const bool bInIsSuccess, const FString &InResponse, const int32 InError) |
Responds to a UCefQuery. | |
bool | ExecuteJavascript (const FCefFrameId &InFrameId, const FString &InJavascriptCode, const FString &InTargetUrl) |
Executes JavaScript code in a specific frame. | |
bool | ExecuteJavascriptWithResult (const FCefFrameId &InFrameId, const FString &InJavascriptCode, const FString &InTargetUrl, const FString &InExecuteContext) |
Executes JavaScript code in a specific frame and returns the result. | |
bool | SetPreference (const FString &InPreferenceName, const FString &InPreferenceValue, FString &OutError) |
Sets a preference. | |
void | SetDisablePopupContextMenu (bool bInIsDisable) |
Sets whether to disable the context menu for a pop-up browser. | |
bool | IsPopupContextMenuDisabled () |
Gets whether the context menu is disabled for a pop-up browser. | |
bool | HasDevTools () |
Detects whether this browser has dev-tools opened. | |
void | ShowDevTools () |
Opens the dev-tools dialog. | |
void | CloseDevTools () |
Closes the dev-tools dialog. | |
Static Public Attributes | |
static const FCefFrameId | MainFrameID |
The main frame identity. | |
static const FCefFrameId | AllFrameID |
The identifier for all frames. | |
Protected Member Functions | |
void | OnNewBrowser (const FCefFrameId &InSourceFrameId, const FString &InTargetUrl, const FString &InFrameName, ECefWindowOpenDisposition InTargetDisposition, FIntRect &InDesiredRect) |
Called when a new browser is created. | |
bool | OnNewPopup (const FCefFrameId &InSourceFrameId, const FString &InTargetUrl, FString &InFrameName, ECefWindowOpenDisposition InTargetDisposition, FIntRect &InDesiredRect, FCefViewSettings &InBrowserSettings, bool &bInDisableJavascriptAccess) |
Gets called before the pop-up browser is created (only for browser created by JavaScript). | |
bool | OnRequestCloseFromWeb () |
The callback type of close request from web. | |
void | Tick (const FGeometry &InAllottedGeometry, const double InCurrentTime, const float InDeltaTime) override |
Tick function. | |
FChildren * | GetChildren () override |
GetChildren function. | |
void | OnArrangeChildren (const FGeometry &InAllottedGeometry, FArrangedChildren &InArrangedChildren) const override |
OnArrangeChildren function. | |
FVector2D | ComputeDesiredSize (float InLayoutScaleMultiplier) const override |
ComputeDesiredSize function. | |
int32 | OnPaint (const FPaintArgs &InArgs, const FGeometry &InAllottedGeometry, const FSlateRect &InMyCullingRect, FSlateWindowElementList &InOutDrawElements, int32 InLayerId, const FWidgetStyle &InWidgetStyle, bool bInParentEnabled) const override |
OnPaint function. | |
TOptional< TSharedRef< SWidget > > | OnMapCursor (const FCursorReply &InCursorReply) const |
OnMapCursor function. | |
bool | SupportsKeyboardFocus () const override |
SupportsKeyboardFocus function. | |
FReply | OnFocusReceived (const FGeometry &InGeometry, const FFocusEvent &InFocusEvent) override |
OnFocusReceived function. | |
void | OnFocusLost (const FFocusEvent &InFocusEvent) override |
OnFocusLost function. | |
FNavigationReply | OnNavigation (const FGeometry &InGeometry, const FNavigationEvent &InNavigationEvent) override |
OnNavigation function. | |
void | OnMouseEnter (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseEnter function. | |
void | OnMouseLeave (const FPointerEvent &InMouseEvent) override |
OnMouseLeave function. | |
FReply | OnMouseMove (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseMove function. | |
FReply | OnPreviewMouseButtonDown (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnPreviewMouseButtonDown function. | |
FReply | OnMouseButtonDown (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseButtonDown function. | |
FReply | OnMouseButtonUp (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseButtonUp function. | |
FReply | OnMouseButtonDoubleClick (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseButtonDoubleClick function. | |
FReply | OnMouseWheel (const FGeometry &InGeometry, const FPointerEvent &InMouseEvent) override |
OnMouseWheel function. | |
FReply | OnPreviewKeyDown (const FGeometry &InGeometry, const FKeyEvent &InKeyEvent) override |
OnPreviewKeyDown function. | |
FReply | OnKeyDown (const FGeometry &InGeometry, const FKeyEvent &InKeyEvent) override |
OnKeyDown function. | |
FReply | OnKeyChar (const FGeometry &InGeometry, const FCharacterEvent &InCharacterEvent) override |
OnKeyChar function. | |
FReply | OnKeyUp (const FGeometry &InGeometry, const FKeyEvent &InKeyEvent) override |
OnKeyUp function. | |
Represents a Slate widget that hosts a CEF browser.
using SCefView::FOnAddressChangedEvent = void(*)( const FCefFrameId& InFrameId , const FString& InUrl ) |
The callback type of the address changed.
InFrameId | The frame ID. |
InUrl | The address. |
using SCefView::FOnConsoleMessageEvent = void(*)( const FString& InMessage , int32 InLevel ) |
The callback type of console message from the web content.
InMessage | The message. |
InLevel | The level. |
using SCefView::FOnDraggableRegionChangedEvent = void(*)( const FVector4& InDraggableRegion , const FVector4& InNonDraggableRegion ) |
The callback type of draggable region changed.
InDraggableRegion | The new draggable region. |
InNonDraggableRegion | The new non-draggable region. |
using SCefView::FOnFaviconUrlChangedEvent = void(*)( const TArray<FString>& InUrls ) |
The callback type of favicon URL changed.
InUrls | The URLs. |
using SCefView::FOnFullscreenModeChangedEvent = void(*)( bool bInIsFullscreen ) |
The callback type of fullscreen mode changed.
bInIsFullscreen | The current fullscreen mode. |
using SCefView::FOnInvokeMethodEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InMethod , const TArray<TSharedPtr<FJsonValue>>& InArguments ) |
The callback type of invoking method request from web content (JavaScript).
InBrowserId | The browser ID. |
InFrameId | The frame ID. |
InMethod | The method name. |
InArguments | The arguments list. |
using SCefView::FOnLoadEndEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , bool bInIsMainFrame , int InHttpStatusCode ) |
The callback type of loading ends.
InBrowserId | Indicates the browser ID. |
InFrameId | Indicates the frame ID. |
bInIsMainFrame | Indicates whether this is the main frame. |
InHttpStatusCode | The HTTP status code. |
using SCefView::FOnLoadErrorEvent = void(*)( const int64& InBrowserId , const FCefFrameId& InFrameId , bool bInIsMainFrame , int InErrorCode , const FString& InErrorMsg , const FString& InOutFailedUrl , bool& InOutHandled ) |
The callback type of loading failed due to error.
InBrowserId | Indicates the browser ID. |
InFrameId | Indicates the frame ID. |
bInIsMainFrame | Indicates whether this is the main frame. |
InErrorCode | The error code. |
InErrorMsg | The error message. |
InFailedUrl | The URL that caused the failure. |
InOutHandled | Whether this error was handled or not. |
using SCefView::FOnLoadingProgressChangedEvent = void(*)( double InProgress ) |
The callback type of loading progress changed.
InProgress | Current progress. |
using SCefView::FOnLoadStartEvent = (*)( const int64& , const FCefFrameId& , bool , int ) |
The callback type of loading starts.
InBrowserId | Indicates the browser ID. |
InFrameId | Indicates the frame ID. |
bInIsMainFrame | Indicates whether this is the main frame. |
InTransitionType | Transition type. |
using SCefView::FOnLoadStateChangedEvent = (*)( const int64& InBrowserId , bool bInIsLoading , bool bInCanGoBack , bool bInCanGoForward ) |
The callback type of loading state changed.
InBrowserId | Indicates the browser ID. |
bInIsLoading | Indicates the browser is loading. |
bInCanGoBack | Indicates the browser can go back. |
bInCanGoForward | Indicates the browser can go forward. |
using SCefView::FOnNativeBrowserCreatedEvent = void(*)() |
The callback type of the native browser window created event. This callback does not work for OSR mode.
using SCefView::FOnQueryRequestEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const int64& InQueryId , const FString& InRequest ) |
The callback type of new UCefQuery request.
InBrowserId | The browser ID. |
InFrameId | The frame ID. |
InQueryId | The query ID. |
InRequest | The query request. |
using SCefView::FOnReportJavascriptResultEvent = (*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InContext , const TSharedPtr<FJsonValue>& InResult ) |
The callback type of the result of the JavaScript executed with executeJavascriptWithResult returned.
InBrowserId | The browser ID. |
InFrameId | The frame ID. |
InContext | The context. |
InResult | The result. |
using SCefView::FOnStatusMessageEvent = void(*)( const FString& InMessage ) |
The callback type of status message changed.
InMessage | The status message. |
using SCefView::FOnTitleChangedEvent = void(*)( const FString& InTitle ) |
The callback type of title changed.
InTitle | The title. |
using SCefView::FOnUrlRequestEvent = void(*)( const int64& InBrowserId , const FCefFrameId& InFrameId , const FString& InQuery ) |
The callback type of built-in scheme URL access.
InBrowserId | The browser ID. |
InFrameId | The frame ID. |
InQuery | The full URL. |
SCefView::SCefView | ( | ) |
Constructor.
SCefView::~SCefView | ( | ) |
Destructor.
void SCefView::AddArchiveFileResource | ( | const FString & | InArchivePath, |
const FString & | InTargetUrl, | ||
const FString & | InPassword = "", | ||
int32 | InPriority = 0 ) |
Adds a URL mapping item with a local archive (.zip) file which contains the web resource.
InArchivePath | The path to the local archive file. |
InTargetUrl | The URL to be mapped to. |
InPassword | The password of the archive. |
InPriority | The priority. |
void SCefView::AddLocalFolderResource | ( | const FString & | InFolderPath, |
const FString & | InTargetUrl, | ||
int32 | InPriority = 0 ) |
Adds a URL mapping item with a local web resource directory.
InFolderPath | The path to the local resource directory. |
InTargetUrl | The URL to be mapped to. |
InPriority | The priority. |
bool SCefView::BroadcastEvent | ( | const FString & | InName, |
const TArray< TSharedPtr< FJsonValue > > & | InArgs ) |
Broadcasts an event to all frames.
InName | The name of the event. |
InArgs | The arguments to pass to the event. |
bool SCefView::BrowserCanGoBack | ( | ) |
Checks whether the browser can go back.
bool SCefView::BrowserCanGoForward | ( | ) |
Checks whether the browser can go forward.
void SCefView::BrowserGoBack | ( | ) |
Requires the browser to go back.
void SCefView::BrowserGoForward | ( | ) |
Requires the browser to go forward.
void SCefView::BrowserReload | ( | ) |
Requires the browser to reload.
void SCefView::BrowserStopLoad | ( | ) |
Requires the browser to stop loading.
void SCefView::CloseDevTools | ( | ) |
Closes the dev-tools dialog.
|
overrideprotected |
ComputeDesiredSize function.
InLayoutScaleMultiplier | The layout scale multiplier. |
void SCefView::Construct | ( | const FArguments & | InArgs | ) |
Construct function.
InArgs | The arguments. |
void SCefView::CreateNativeBrowser | ( | const UCefContext * | InCefContext | ) |
Creates the native browser.
InCefContext | The CEF context. |
void SCefView::DestroyNativeBrowser | ( | ) |
Destroys the native browser.
bool SCefView::ExecuteJavascript | ( | const FCefFrameId & | InFrameId, |
const FString & | InJavascriptCode, | ||
const FString & | InTargetUrl ) |
Executes JavaScript code in a specific frame.
InFrameId | The ID of the frame to execute the code in. |
InJavascriptCode | The JavaScript code to execute. |
InTargetUrl | The URL to associate with the code. |
bool SCefView::ExecuteJavascriptWithResult | ( | const FCefFrameId & | InFrameId, |
const FString & | InJavascriptCode, | ||
const FString & | InTargetUrl, | ||
const FString & | InExecuteContext ) |
Executes JavaScript code in a specific frame and returns the result.
InFrameId | The ID of the frame to execute the code in. |
InJavascriptCode | The JavaScript code to execute. |
InTargetUrl | The URL to associate with the code. |
InExecuteContext | The context in which to execute the code. |
int64 SCefView::GetBrowserId | ( | ) |
Gets the browser ID.
|
overrideprotected |
GetChildren function.
bool SCefView::HasDevTools | ( | ) |
Detects whether this browser has dev-tools opened.
bool SCefView::IsBrowserLoading | ( | ) |
Checks whether the browser is loading.
bool SCefView::IsDragAndDropEnabled | ( | ) | const |
Gets whether drag and drop is enabled.
bool SCefView::IsPopupContextMenuDisabled | ( | ) |
Gets whether the context menu is disabled for a pop-up browser.
void SCefView::NavigateToUrl | ( | const FString & | InTargetUrl | ) |
Navigates to the URL.
InTargetUrl | The URL. |
|
overrideprotected |
OnArrangeChildren function.
InAllottedGeometry | The allotted geometry. |
InArrangedChildren | The arranged children. |
|
overrideprotected |
OnFocusLost function.
InFocusEvent | The focus event. |
|
overrideprotected |
OnFocusReceived function.
InGeometry | The geometry. |
InFocusEvent | The focus event. |
|
overrideprotected |
OnKeyChar function.
InGeometry | The geometry. |
InCharacterEvent | The character event. |
|
overrideprotected |
OnKeyDown function.
InGeometry | The geometry. |
InKeyEvent | The key event. |
|
overrideprotected |
OnKeyUp function.
InGeometry | The geometry. |
InKeyEvent | The key event. |
|
protected |
OnMapCursor function.
InCursorReply | The cursor reply. |
|
overrideprotected |
OnMouseButtonDoubleClick function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseButtonDown function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseButtonUp function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseEnter function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseLeave function.
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseMove function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnMouseWheel function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
overrideprotected |
OnNavigation function.
InGeometry | The geometry. |
InNavigationEvent | The navigation event. |
|
protected |
Called when a new browser is created.
InSourceFrameId | The ID of the frame that created the new browser. |
InTargetUrl | The URL of the new browser. |
InFrameName | The name of the new browser. |
InTargetDisposition | The disposition of the new browser. |
InDesiredRect | The desired rectangle of the new browser. |
|
protected |
Gets called before the pop-up browser is created (only for browser created by JavaScript).
InSourceFrameId | The source frame ID. |
InTargetUrl | The target URL. |
InFrameName | The target name. |
InTargetDisposition | Target window open method. |
InDesiredRect | Rect to be used for the popup. |
InBrowserSettings | Settings to be used for the popup. |
bInDisableJavascriptAccess | Whether to disable JavaScript access. |
|
overrideprotected |
OnPaint function.
InArgs | The paint arguments. |
InAllottedGeometry | The allotted geometry. |
InMyCullingRect | The my culling rectangle. |
InOutDrawElements | The out draw elements. |
InLayerId | The layer ID. |
InWidgetStyle | The widget style. |
bInParentEnabled | Whether the parent is enabled. |
|
overrideprotected |
OnPreviewKeyDown function.
InGeometry | The geometry. |
InKeyEvent | The key event. |
|
overrideprotected |
OnPreviewMouseButtonDown function.
InGeometry | The geometry. |
InMouseEvent | The mouse event. |
|
protected |
The callback type of close request from web.
bool SCefView::ResponseUCefQuery | ( | const int64 | InQueryId, |
const bool | bInIsSuccess, | ||
const FString & | InResponse, | ||
const int32 | InError ) |
Responds to a UCefQuery.
InQueryId | The ID of the query to respond to. |
bInIsSuccess | Whether the query was successful. |
InResponse | The response to the query. |
InError | The error code, if any. |
void SCefView::SetDisablePopupContextMenu | ( | bool | bInIsDisable | ) |
Sets whether to disable the context menu for a pop-up browser.
bInIsDisable | True to disable; otherwise, false. |
bool SCefView::SetPreference | ( | const FString & | InPreferenceName, |
const FString & | InPreferenceValue, | ||
FString & | OutError ) |
Sets a preference.
InPreferenceName | The name of the preference to set. |
InPreferenceValue | The value to set the preference to. |
OutError | An error message, if any. |
void SCefView::SetSettings | ( | const FCefViewSettings & | InSettings | ) |
Sets the settings.
InSettings | The settings. |
void SCefView::SetUrl | ( | const FString & | InUrl | ) |
Sets the URL.
InUrl | The URL. |
|
override |
Sets the visibility.
InVisibility | The visibility. |
void SCefView::ShowDevTools | ( | ) |
Opens the dev-tools dialog.
|
overrideprotected |
SupportsKeyboardFocus function.
|
overrideprotected |
Tick function.
InAllottedGeometry | The allotted geometry. |
InCurrentTime | The current time. |
InDeltaTime | The delta time. |
bool SCefView::TriggerEventForFrame | ( | const FString & | InName, |
const TArray< TSharedPtr< FJsonValue > > & | InArgs, | ||
const FCefFrameId & | InFrameId ) |
Triggers an event for a specific frame.
InName | The name of the event. |
InArgs | The arguments to pass to the event. |
InFrameId | The frame ID to trigger the event on. |
bool SCefView::TriggerEventForMainFrame | ( | const FString & | InName, |
const TArray< TSharedPtr< FJsonValue > > & | InArgs ) |
Triggers an event for the main frame.
InName | The name of the event. |
InArgs | The arguments to pass to the event. |
|
static |
The identifier for all frames.
|
protected |
JSDialogContainerSlot.
|
static |
The main frame identity.
|
protected |
On address changed event.
|
protected |
On console message event.
|
protected |
On draggable region changed event.
|
protected |
On favicon URL changed event.
|
protected |
On fullscreen mode changed event.
|
protected |
On invoke method event.
|
protected |
On load end event.
|
protected |
On load error event.
|
protected |
On loading progress changed event.
|
protected |
On load start event.
|
protected |
On load state changed event.
|
protected |
On native browser created event.
|
protected |
On query request event.
|
protected |
On report JavaScript result event.
|
protected |
On status message event.
|
protected |
On title changed event.
|
protected |
On URL request event.