CefLoadHandler

interface CefLoadHandler

Implement this interface to handle events related to browser load status.

Inheritors

Types

Link copied to clipboard

Functions

Link copied to clipboard
abstract fun onLoadEnd(browser: CefBrowser, frame: CefFrame, httpStatusCode: Int)
Called when the browser is done loading a frame.
Link copied to clipboard
abstract fun onLoadError(browser: CefBrowser, frame: CefFrame, errorCode: CefLoadHandler.ErrorCode, errorText: String, failedUrl: String)
Called when the resource load for a navigation fails or is canceled.
Link copied to clipboard
abstract fun onLoadingStateChange(browser: CefBrowser, isLoading: Boolean, canGoBack: Boolean, canGoForward: Boolean)
Called when the loading state has changed.
Link copied to clipboard
abstract fun onLoadStart(browser: CefBrowser, frame: CefFrame, transitionType: CefRequest.TransitionType)
Called when the browser begins loading a frame.