webkit

package
v0.0.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2026 License: CC0-1.0 Imports: 6 Imported by: 0

Documentation

Overview

Package webkit provides Go bindings for android.webkit.

Index

Constants

View Source
const (
	Debug                              = consts.Debug
	Error                              = consts.Error
	Log                                = consts.Log
	Tip                                = consts.Tip
	Warning                            = consts.Warning
	DayCount                           = consts.DayCount
	RendererPriorityBound              = consts.RendererPriorityBound
	RendererPriorityImportant          = consts.RendererPriorityImportant
	RendererPriorityWaived             = consts.RendererPriorityWaived
	AnchorType                         = consts.AnchorType
	EditTextType                       = consts.EditTextType
	EmailType                          = consts.EmailType
	GeoType                            = consts.GeoType
	ImageAnchorType                    = consts.ImageAnchorType
	ImageType                          = consts.ImageType
	PhoneType                          = consts.PhoneType
	SrcAnchorType                      = consts.SrcAnchorType
	SrcImageAnchorType                 = consts.SrcImageAnchorType
	UnknownType                        = consts.UnknownType
	CategoriesAll                      = consts.CategoriesAll
	CategoriesAndroidWebview           = consts.CategoriesAndroidWebview
	CategoriesFrameViewer              = consts.CategoriesFrameViewer
	CategoriesInputLatency             = consts.CategoriesInputLatency
	CategoriesJavascriptAndRendering   = consts.CategoriesJavascriptAndRendering
	CategoriesNone                     = consts.CategoriesNone
	CategoriesRendering                = consts.CategoriesRendering
	CategoriesWebDeveloper             = consts.CategoriesWebDeveloper
	RecordContinuously                 = consts.RecordContinuously
	RecordUntilFull                    = consts.RecordUntilFull
	ModeOpen                           = consts.ModeOpen
	ModeOpenMultiple                   = consts.ModeOpenMultiple
	ModeSave                           = consts.ModeSave
	ErrorAuthentication                = consts.ErrorAuthentication
	ErrorBadUrl                        = consts.ErrorBadUrl
	ErrorConnect                       = consts.ErrorConnect
	ErrorFailedSslHandshake            = consts.ErrorFailedSslHandshake
	ErrorFile                          = consts.ErrorFile
	ErrorFileNotFound                  = consts.ErrorFileNotFound
	ErrorHostLookup                    = consts.ErrorHostLookup
	ErrorIo                            = consts.ErrorIo
	ErrorProxyAuthentication           = consts.ErrorProxyAuthentication
	ErrorRedirectLoop                  = consts.ErrorRedirectLoop
	ErrorTimeout                       = consts.ErrorTimeout
	ErrorTooManyRequests               = consts.ErrorTooManyRequests
	ErrorUnknown                       = consts.ErrorUnknown
	ErrorUnsafeResource                = consts.ErrorUnsafeResource
	ErrorUnsupportedAuthScheme         = consts.ErrorUnsupportedAuthScheme
	ErrorUnsupportedScheme             = consts.ErrorUnsupportedScheme
	SafeBrowsingThreatBilling          = consts.SafeBrowsingThreatBilling
	SafeBrowsingThreatMalware          = consts.SafeBrowsingThreatMalware
	SafeBrowsingThreatPhishing         = consts.SafeBrowsingThreatPhishing
	SafeBrowsingThreatUnknown          = consts.SafeBrowsingThreatUnknown
	SafeBrowsingThreatUnwantedSoftware = consts.SafeBrowsingThreatUnwantedSoftware
	ForceDarkAuto                      = consts.ForceDarkAuto
	ForceDarkOff                       = consts.ForceDarkOff
	ForceDarkOn                        = consts.ForceDarkOn
	LoadCacheElseNetwork               = consts.LoadCacheElseNetwork
	LoadCacheOnly                      = consts.LoadCacheOnly
	LoadDefault                        = consts.LoadDefault
	LoadNormal                         = consts.LoadNormal
	LoadNoCache                        = consts.LoadNoCache
	MenuItemNone                       = consts.MenuItemNone
	MenuItemProcessText                = consts.MenuItemProcessText
	MenuItemShare                      = consts.MenuItemShare
	MenuItemWebSearch                  = consts.MenuItemWebSearch
	MixedContentAlwaysAllow            = consts.MixedContentAlwaysAllow
	MixedContentCompatibilityMode      = consts.MixedContentCompatibilityMode
	MixedContentNeverAllow             = consts.MixedContentNeverAllow
	NarrowColumns                      = consts.NarrowColumns
	Normal                             = consts.Normal
	SingleColumn                       = consts.SingleColumn
	TextAutosizing                     = consts.TextAutosizing
	Off                                = consts.Off
	On                                 = consts.On
	OnDemand                           = consts.OnDemand
	High                               = consts.High
	Low                                = consts.Low
	Larger                             = consts.Larger
	Largest                            = consts.Largest
	Smaller                            = consts.Smaller
	Smallest                           = consts.Smallest
	Close                              = consts.Close
	Far                                = consts.Far
	Medium                             = consts.Medium
)
View Source
const (
	SchemeGeo                = consts.SchemeGeo
	SchemeMailto             = consts.SchemeMailto
	SchemeTel                = consts.SchemeTel
	ResourceAudioCapture     = consts.ResourceAudioCapture
	ResourceMidiSysex        = consts.ResourceMidiSysex
	ResourceProtectedMediaId = consts.ResourceProtectedMediaId
	ResourceVideoCapture     = consts.ResourceVideoCapture
)

Variables

This section is empty.

Functions

func Init

func Init(env *jni.Env) error

Init resolves all JNI class and method references for this package. It is safe to call multiple times (uses sync.Once internally). Exported for E2E testing on Android.

Types

type ClientCertRequest

type ClientCertRequest struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ClientCertRequest wraps android.webkit.ClientCertRequest.

func (*ClientCertRequest) Cancel

func (m *ClientCertRequest) Cancel() error

Cancel calls android.webkit.ClientCertRequest.cancel.

func (*ClientCertRequest) GetHost

func (m *ClientCertRequest) GetHost() (string, error)

GetHost calls android.webkit.ClientCertRequest.getHost.

func (*ClientCertRequest) GetKeyTypes

func (m *ClientCertRequest) GetKeyTypes() (*jni.Object, error)

GetKeyTypes calls android.webkit.ClientCertRequest.getKeyTypes.

func (*ClientCertRequest) GetPort

func (m *ClientCertRequest) GetPort() (int32, error)

GetPort calls android.webkit.ClientCertRequest.getPort.

func (*ClientCertRequest) GetPrincipals

func (m *ClientCertRequest) GetPrincipals() (*jni.Object, error)

GetPrincipals calls android.webkit.ClientCertRequest.getPrincipals.

func (*ClientCertRequest) Ignore

func (m *ClientCertRequest) Ignore() error

Ignore calls android.webkit.ClientCertRequest.ignore.

func (*ClientCertRequest) Proceed

func (m *ClientCertRequest) Proceed(arg0 *jni.Object, arg1 *jni.Object) error

Proceed calls android.webkit.ClientCertRequest.proceed.

type ConsoleMessage

type ConsoleMessage struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ConsoleMessage wraps android.webkit.ConsoleMessage.

func NewConsoleMessage

func NewConsoleMessage(vm *jni.VM, arg0 string, arg1 string, arg2 int32, arg3 *jni.Object) (*ConsoleMessage, error)

NewConsoleMessage creates a new android.webkit.ConsoleMessage instance.

func (*ConsoleMessage) LineNumber

func (m *ConsoleMessage) LineNumber() (int32, error)

LineNumber calls android.webkit.ConsoleMessage.lineNumber.

func (*ConsoleMessage) Message

func (m *ConsoleMessage) Message() (string, error)

Message calls android.webkit.ConsoleMessage.message.

func (*ConsoleMessage) MessageLevel

func (m *ConsoleMessage) MessageLevel() (*jni.Object, error)

MessageLevel calls android.webkit.ConsoleMessage.messageLevel.

func (*ConsoleMessage) SourceId

func (m *ConsoleMessage) SourceId() (string, error)

SourceId calls android.webkit.ConsoleMessage.sourceId.

type ConsoleMessageMessageLevel

type ConsoleMessageMessageLevel struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ConsoleMessageMessageLevel wraps android.webkit.ConsoleMessage$MessageLevel.

func (*ConsoleMessageMessageLevel) ValueOf

func (m *ConsoleMessageMessageLevel) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.ConsoleMessage$MessageLevel.valueOf.

func (*ConsoleMessageMessageLevel) Values

func (m *ConsoleMessageMessageLevel) Values() (*jni.Object, error)

Values calls android.webkit.ConsoleMessage$MessageLevel.values.

type CookieManager

type CookieManager struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CookieManager wraps android.webkit.CookieManager.

func (*CookieManager) AcceptCookie

func (m *CookieManager) AcceptCookie() (bool, error)

AcceptCookie calls android.webkit.CookieManager.acceptCookie.

func (*CookieManager) AcceptThirdPartyCookies

func (m *CookieManager) AcceptThirdPartyCookies(arg0 *jni.Object) (bool, error)

AcceptThirdPartyCookies calls android.webkit.CookieManager.acceptThirdPartyCookies.

func (*CookieManager) AllowFileSchemeCookies

func (m *CookieManager) AllowFileSchemeCookies() (bool, error)

AllowFileSchemeCookies calls android.webkit.CookieManager.allowFileSchemeCookies.

func (*CookieManager) Flush

func (m *CookieManager) Flush() error

Flush calls android.webkit.CookieManager.flush.

func (*CookieManager) GetCookie

func (m *CookieManager) GetCookie(arg0 string) (string, error)

GetCookie calls android.webkit.CookieManager.getCookie.

func (*CookieManager) GetInstance

func (m *CookieManager) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.CookieManager.getInstance.

func (*CookieManager) HasCookies

func (m *CookieManager) HasCookies() (bool, error)

HasCookies calls android.webkit.CookieManager.hasCookies.

func (*CookieManager) RemoveAllCookie

func (m *CookieManager) RemoveAllCookie() error

RemoveAllCookie calls android.webkit.CookieManager.removeAllCookie.

func (*CookieManager) RemoveExpiredCookie

func (m *CookieManager) RemoveExpiredCookie() error

RemoveExpiredCookie calls android.webkit.CookieManager.removeExpiredCookie.

func (*CookieManager) RemoveSessionCookie

func (m *CookieManager) RemoveSessionCookie() error

RemoveSessionCookie calls android.webkit.CookieManager.removeSessionCookie.

func (*CookieManager) SetAcceptCookie

func (m *CookieManager) SetAcceptCookie(arg0 bool) error

SetAcceptCookie calls android.webkit.CookieManager.setAcceptCookie.

func (*CookieManager) SetAcceptFileSchemeCookies

func (m *CookieManager) SetAcceptFileSchemeCookies(arg0 bool) error

SetAcceptFileSchemeCookies calls android.webkit.CookieManager.setAcceptFileSchemeCookies.

func (*CookieManager) SetAcceptThirdPartyCookies

func (m *CookieManager) SetAcceptThirdPartyCookies(arg0 *jni.Object, arg1 bool) error

SetAcceptThirdPartyCookies calls android.webkit.CookieManager.setAcceptThirdPartyCookies.

func (*CookieManager) SetCookie

func (m *CookieManager) SetCookie(arg0 string, arg1 string) error

SetCookie calls android.webkit.CookieManager.setCookie.

type CookieSyncManager

type CookieSyncManager struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CookieSyncManager wraps android.webkit.CookieSyncManager.

func (*CookieSyncManager) CreateInstance

func (m *CookieSyncManager) CreateInstance(arg0 *jni.Object) (*jni.Object, error)

CreateInstance calls android.webkit.CookieSyncManager.createInstance.

func (*CookieSyncManager) GetInstance

func (m *CookieSyncManager) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.CookieSyncManager.getInstance.

func (*CookieSyncManager) ResetSync

func (m *CookieSyncManager) ResetSync() error

ResetSync calls android.webkit.CookieSyncManager.resetSync.

func (*CookieSyncManager) Run

func (m *CookieSyncManager) Run() error

Run calls android.webkit.CookieSyncManager.run.

func (*CookieSyncManager) StartSync

func (m *CookieSyncManager) StartSync() error

StartSync calls android.webkit.CookieSyncManager.startSync.

func (*CookieSyncManager) StopSync

func (m *CookieSyncManager) StopSync() error

StopSync calls android.webkit.CookieSyncManager.stopSync.

func (*CookieSyncManager) Sync

func (m *CookieSyncManager) Sync() error

Sync calls android.webkit.CookieSyncManager.sync.

type DateSorter

type DateSorter struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DateSorter wraps android.webkit.DateSorter.

func NewDateSorter

func NewDateSorter(vm *jni.VM, arg0 *jni.Object) (*DateSorter, error)

NewDateSorter creates a new android.webkit.DateSorter instance.

func (*DateSorter) GetBoundary

func (m *DateSorter) GetBoundary(arg0 int32) (int64, error)

GetBoundary calls android.webkit.DateSorter.getBoundary.

func (*DateSorter) GetIndex

func (m *DateSorter) GetIndex(arg0 int64) (int32, error)

GetIndex calls android.webkit.DateSorter.getIndex.

func (*DateSorter) GetLabel

func (m *DateSorter) GetLabel(arg0 int32) (string, error)

GetLabel calls android.webkit.DateSorter.getLabel.

type DownloadListener

type DownloadListener struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DownloadListener wraps android.webkit.DownloadListener.

func (*DownloadListener) OnDownloadStart

func (m *DownloadListener) OnDownloadStart(
	arg0 string,
	arg1 string,
	arg2 string,
	arg3 string,
	arg4 int64,
) error

OnDownloadStart calls android.webkit.DownloadListener.onDownloadStart.

type GeolocationPermissions

type GeolocationPermissions struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

GeolocationPermissions wraps android.webkit.GeolocationPermissions.

func (*GeolocationPermissions) Allow

func (m *GeolocationPermissions) Allow(arg0 string) error

Allow calls android.webkit.GeolocationPermissions.allow.

func (*GeolocationPermissions) Clear

func (m *GeolocationPermissions) Clear(arg0 string) error

Clear calls android.webkit.GeolocationPermissions.clear.

func (*GeolocationPermissions) ClearAll

func (m *GeolocationPermissions) ClearAll() error

ClearAll calls android.webkit.GeolocationPermissions.clearAll.

func (*GeolocationPermissions) GetInstance

func (m *GeolocationPermissions) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.GeolocationPermissions.getInstance.

type GeolocationPermissionsCallback

type GeolocationPermissionsCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

GeolocationPermissionsCallback wraps android.webkit.GeolocationPermissions$Callback.

func (*GeolocationPermissionsCallback) Invoke

func (m *GeolocationPermissionsCallback) Invoke(
	arg0 string,
	arg1 bool,
	arg2 bool,
) error

Invoke calls android.webkit.GeolocationPermissions$Callback.invoke.

type HttpAuthHandler

type HttpAuthHandler struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

HttpAuthHandler wraps android.webkit.HttpAuthHandler.

func (*HttpAuthHandler) Cancel

func (m *HttpAuthHandler) Cancel() error

Cancel calls android.webkit.HttpAuthHandler.cancel.

func (*HttpAuthHandler) Proceed

func (m *HttpAuthHandler) Proceed(arg0 string, arg1 string) error

Proceed calls android.webkit.HttpAuthHandler.proceed.

func (*HttpAuthHandler) UseHttpAuthUsernamePassword

func (m *HttpAuthHandler) UseHttpAuthUsernamePassword() (bool, error)

UseHttpAuthUsernamePassword calls android.webkit.HttpAuthHandler.useHttpAuthUsernamePassword.

type JsPromptResult

type JsPromptResult struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

JsPromptResult wraps android.webkit.JsPromptResult.

func (*JsPromptResult) Confirm

func (m *JsPromptResult) Confirm(arg0 string) error

Confirm calls android.webkit.JsPromptResult.confirm.

type JsResult

type JsResult struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

JsResult wraps android.webkit.JsResult.

func (*JsResult) Cancel

func (m *JsResult) Cancel() error

Cancel calls android.webkit.JsResult.cancel.

func (*JsResult) Confirm

func (m *JsResult) Confirm() error

Confirm calls android.webkit.JsResult.confirm.

type MimeTypeMap

type MimeTypeMap struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

MimeTypeMap wraps android.webkit.MimeTypeMap.

func (*MimeTypeMap) GetExtensionFromMimeType

func (m *MimeTypeMap) GetExtensionFromMimeType(arg0 string) (string, error)

GetExtensionFromMimeType calls android.webkit.MimeTypeMap.getExtensionFromMimeType.

func (*MimeTypeMap) GetFileExtensionFromUrl

func (m *MimeTypeMap) GetFileExtensionFromUrl(arg0 string) (string, error)

GetFileExtensionFromUrl calls android.webkit.MimeTypeMap.getFileExtensionFromUrl.

func (*MimeTypeMap) GetMimeTypeFromExtension

func (m *MimeTypeMap) GetMimeTypeFromExtension(arg0 string) (string, error)

GetMimeTypeFromExtension calls android.webkit.MimeTypeMap.getMimeTypeFromExtension.

func (*MimeTypeMap) GetSingleton

func (m *MimeTypeMap) GetSingleton() (*jni.Object, error)

GetSingleton calls android.webkit.MimeTypeMap.getSingleton.

func (*MimeTypeMap) HasExtension

func (m *MimeTypeMap) HasExtension(arg0 string) (bool, error)

HasExtension calls android.webkit.MimeTypeMap.hasExtension.

func (*MimeTypeMap) HasMimeType

func (m *MimeTypeMap) HasMimeType(arg0 string) (bool, error)

HasMimeType calls android.webkit.MimeTypeMap.hasMimeType.

type PermissionRequest

type PermissionRequest struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

PermissionRequest wraps android.webkit.PermissionRequest.

func (*PermissionRequest) Deny

func (m *PermissionRequest) Deny() error

Deny calls android.webkit.PermissionRequest.deny.

func (*PermissionRequest) GetOrigin

func (m *PermissionRequest) GetOrigin() (*jni.Object, error)

GetOrigin calls android.webkit.PermissionRequest.getOrigin.

func (*PermissionRequest) GetResources

func (m *PermissionRequest) GetResources() (*jni.Object, error)

GetResources calls android.webkit.PermissionRequest.getResources.

func (*PermissionRequest) Grant

func (m *PermissionRequest) Grant(arg0 *jni.Object) error

Grant calls android.webkit.PermissionRequest.grant.

type PluginStub

type PluginStub struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

PluginStub wraps android.webkit.PluginStub.

func (*PluginStub) GetEmbeddedView

func (m *PluginStub) GetEmbeddedView(arg0 int32, arg1 *jni.Object) (*jni.Object, error)

GetEmbeddedView calls android.webkit.PluginStub.getEmbeddedView.

func (*PluginStub) GetFullScreenView

func (m *PluginStub) GetFullScreenView(arg0 int32, arg1 *jni.Object) (*jni.Object, error)

GetFullScreenView calls android.webkit.PluginStub.getFullScreenView.

type RenderProcessGoneDetail

type RenderProcessGoneDetail struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

RenderProcessGoneDetail wraps android.webkit.RenderProcessGoneDetail.

func (*RenderProcessGoneDetail) DidCrash

func (m *RenderProcessGoneDetail) DidCrash() (bool, error)

DidCrash calls android.webkit.RenderProcessGoneDetail.didCrash.

func (*RenderProcessGoneDetail) RendererPriorityAtExit

func (m *RenderProcessGoneDetail) RendererPriorityAtExit() (int32, error)

RendererPriorityAtExit calls android.webkit.RenderProcessGoneDetail.rendererPriorityAtExit.

type SafeBrowsingResponse

type SafeBrowsingResponse struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SafeBrowsingResponse wraps android.webkit.SafeBrowsingResponse.

func (*SafeBrowsingResponse) BackToSafety

func (m *SafeBrowsingResponse) BackToSafety(arg0 bool) error

BackToSafety calls android.webkit.SafeBrowsingResponse.backToSafety.

func (*SafeBrowsingResponse) Proceed

func (m *SafeBrowsingResponse) Proceed(arg0 bool) error

Proceed calls android.webkit.SafeBrowsingResponse.proceed.

func (*SafeBrowsingResponse) ShowInterstitial

func (m *SafeBrowsingResponse) ShowInterstitial(arg0 bool) error

ShowInterstitial calls android.webkit.SafeBrowsingResponse.showInterstitial.

type ServiceWorkerClient

type ServiceWorkerClient struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ServiceWorkerClient wraps android.webkit.ServiceWorkerClient.

func NewServiceWorkerClient

func NewServiceWorkerClient(vm *jni.VM) (*ServiceWorkerClient, error)

NewServiceWorkerClient creates a new android.webkit.ServiceWorkerClient instance.

func (*ServiceWorkerClient) ShouldInterceptRequest

func (m *ServiceWorkerClient) ShouldInterceptRequest(arg0 *jni.Object) (*jni.Object, error)

ShouldInterceptRequest calls android.webkit.ServiceWorkerClient.shouldInterceptRequest.

type ServiceWorkerController

type ServiceWorkerController struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ServiceWorkerController wraps android.webkit.ServiceWorkerController.

func (*ServiceWorkerController) GetInstance

func (m *ServiceWorkerController) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.ServiceWorkerController.getInstance.

func (*ServiceWorkerController) GetServiceWorkerWebSettings

func (m *ServiceWorkerController) GetServiceWorkerWebSettings() (*jni.Object, error)

GetServiceWorkerWebSettings calls android.webkit.ServiceWorkerController.getServiceWorkerWebSettings.

func (*ServiceWorkerController) SetServiceWorkerClient

func (m *ServiceWorkerController) SetServiceWorkerClient(arg0 *jni.Object) error

SetServiceWorkerClient calls android.webkit.ServiceWorkerController.setServiceWorkerClient.

type ServiceWorkerWebSettings

type ServiceWorkerWebSettings struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ServiceWorkerWebSettings wraps android.webkit.ServiceWorkerWebSettings.

func (*ServiceWorkerWebSettings) GetAllowContentAccess

func (m *ServiceWorkerWebSettings) GetAllowContentAccess() (bool, error)

GetAllowContentAccess calls android.webkit.ServiceWorkerWebSettings.getAllowContentAccess.

func (*ServiceWorkerWebSettings) GetAllowFileAccess

func (m *ServiceWorkerWebSettings) GetAllowFileAccess() (bool, error)

GetAllowFileAccess calls android.webkit.ServiceWorkerWebSettings.getAllowFileAccess.

func (*ServiceWorkerWebSettings) GetBlockNetworkLoads

func (m *ServiceWorkerWebSettings) GetBlockNetworkLoads() (bool, error)

GetBlockNetworkLoads calls android.webkit.ServiceWorkerWebSettings.getBlockNetworkLoads.

func (*ServiceWorkerWebSettings) GetCacheMode

func (m *ServiceWorkerWebSettings) GetCacheMode() (int32, error)

GetCacheMode calls android.webkit.ServiceWorkerWebSettings.getCacheMode.

func (*ServiceWorkerWebSettings) SetAllowContentAccess

func (m *ServiceWorkerWebSettings) SetAllowContentAccess(arg0 bool) error

SetAllowContentAccess calls android.webkit.ServiceWorkerWebSettings.setAllowContentAccess.

func (*ServiceWorkerWebSettings) SetAllowFileAccess

func (m *ServiceWorkerWebSettings) SetAllowFileAccess(arg0 bool) error

SetAllowFileAccess calls android.webkit.ServiceWorkerWebSettings.setAllowFileAccess.

func (*ServiceWorkerWebSettings) SetBlockNetworkLoads

func (m *ServiceWorkerWebSettings) SetBlockNetworkLoads(arg0 bool) error

SetBlockNetworkLoads calls android.webkit.ServiceWorkerWebSettings.setBlockNetworkLoads.

func (*ServiceWorkerWebSettings) SetCacheMode

func (m *ServiceWorkerWebSettings) SetCacheMode(arg0 int32) error

SetCacheMode calls android.webkit.ServiceWorkerWebSettings.setCacheMode.

type SslErrorHandler

type SslErrorHandler struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SslErrorHandler wraps android.webkit.SslErrorHandler.

func (*SslErrorHandler) Cancel

func (m *SslErrorHandler) Cancel() error

Cancel calls android.webkit.SslErrorHandler.cancel.

func (*SslErrorHandler) Proceed

func (m *SslErrorHandler) Proceed() error

Proceed calls android.webkit.SslErrorHandler.proceed.

type TracingConfig

type TracingConfig struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TracingConfig wraps android.webkit.TracingConfig.

func (*TracingConfig) GetPredefinedCategories

func (m *TracingConfig) GetPredefinedCategories() (int32, error)

GetPredefinedCategories calls android.webkit.TracingConfig.getPredefinedCategories.

func (*TracingConfig) GetTracingMode

func (m *TracingConfig) GetTracingMode() (int32, error)

GetTracingMode calls android.webkit.TracingConfig.getTracingMode.

type TracingConfigBuilder

type TracingConfigBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TracingConfigBuilder wraps android.webkit.TracingConfig$Builder.

func (*TracingConfigBuilder) AddCategories1

func (m *TracingConfigBuilder) AddCategories1(arg0 *jni.Object) (*jni.Object, error)

AddCategories1 calls android.webkit.TracingConfig$Builder.addCategories.

func (*TracingConfigBuilder) AddCategories1_1

func (m *TracingConfigBuilder) AddCategories1_1(arg0 *jni.Object) (*jni.Object, error)

AddCategories1_1 calls android.webkit.TracingConfig$Builder.addCategories.

func (*TracingConfigBuilder) Build

func (m *TracingConfigBuilder) Build() (*jni.Object, error)

Build calls android.webkit.TracingConfig$Builder.build.

func (*TracingConfigBuilder) SetTracingMode

func (m *TracingConfigBuilder) SetTracingMode(arg0 int32) (*jni.Object, error)

SetTracingMode calls android.webkit.TracingConfig$Builder.setTracingMode.

type TracingController

type TracingController struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TracingController wraps android.webkit.TracingController.

func (*TracingController) GetInstance

func (m *TracingController) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.TracingController.getInstance.

func (*TracingController) IsTracing

func (m *TracingController) IsTracing() (bool, error)

IsTracing calls android.webkit.TracingController.isTracing.

func (*TracingController) Start

func (m *TracingController) Start(arg0 *jni.Object) error

Start calls android.webkit.TracingController.start.

func (*TracingController) Stop

func (m *TracingController) Stop(arg0 *jni.Object, arg1 *jni.Object) (bool, error)

Stop calls android.webkit.TracingController.stop.

type URLUtil

type URLUtil struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

URLUtil wraps android.webkit.URLUtil.

func NewURLUtil

func NewURLUtil(vm *jni.VM) (*URLUtil, error)

NewURLUtil creates a new android.webkit.URLUtil instance.

func (*URLUtil) ComposeSearchUrl

func (m *URLUtil) ComposeSearchUrl(
	arg0 string,
	arg1 string,
	arg2 string,
) (string, error)

ComposeSearchUrl calls android.webkit.URLUtil.composeSearchUrl.

func (*URLUtil) Decode

func (m *URLUtil) Decode(arg0 *jni.Object) (*jni.Object, error)

Decode calls android.webkit.URLUtil.decode.

func (*URLUtil) GuessFileName

func (m *URLUtil) GuessFileName(
	arg0 string,
	arg1 string,
	arg2 string,
) (string, error)

GuessFileName calls android.webkit.URLUtil.guessFileName.

func (*URLUtil) GuessUrl

func (m *URLUtil) GuessUrl(arg0 string) (string, error)

GuessUrl calls android.webkit.URLUtil.guessUrl.

func (*URLUtil) IsAboutUrl

func (m *URLUtil) IsAboutUrl(arg0 string) (bool, error)

IsAboutUrl calls android.webkit.URLUtil.isAboutUrl.

func (*URLUtil) IsAssetUrl

func (m *URLUtil) IsAssetUrl(arg0 string) (bool, error)

IsAssetUrl calls android.webkit.URLUtil.isAssetUrl.

func (*URLUtil) IsContentUrl

func (m *URLUtil) IsContentUrl(arg0 string) (bool, error)

IsContentUrl calls android.webkit.URLUtil.isContentUrl.

func (*URLUtil) IsCookielessProxyUrl

func (m *URLUtil) IsCookielessProxyUrl(arg0 string) (bool, error)

IsCookielessProxyUrl calls android.webkit.URLUtil.isCookielessProxyUrl.

func (*URLUtil) IsDataUrl

func (m *URLUtil) IsDataUrl(arg0 string) (bool, error)

IsDataUrl calls android.webkit.URLUtil.isDataUrl.

func (*URLUtil) IsFileUrl

func (m *URLUtil) IsFileUrl(arg0 string) (bool, error)

IsFileUrl calls android.webkit.URLUtil.isFileUrl.

func (*URLUtil) IsHttpUrl

func (m *URLUtil) IsHttpUrl(arg0 string) (bool, error)

IsHttpUrl calls android.webkit.URLUtil.isHttpUrl.

func (*URLUtil) IsHttpsUrl

func (m *URLUtil) IsHttpsUrl(arg0 string) (bool, error)

IsHttpsUrl calls android.webkit.URLUtil.isHttpsUrl.

func (*URLUtil) IsJavaScriptUrl

func (m *URLUtil) IsJavaScriptUrl(arg0 string) (bool, error)

IsJavaScriptUrl calls android.webkit.URLUtil.isJavaScriptUrl.

func (*URLUtil) IsNetworkUrl

func (m *URLUtil) IsNetworkUrl(arg0 string) (bool, error)

IsNetworkUrl calls android.webkit.URLUtil.isNetworkUrl.

func (*URLUtil) IsValidUrl

func (m *URLUtil) IsValidUrl(arg0 string) (bool, error)

IsValidUrl calls android.webkit.URLUtil.isValidUrl.

func (*URLUtil) StripAnchor

func (m *URLUtil) StripAnchor(arg0 string) (string, error)

StripAnchor calls android.webkit.URLUtil.stripAnchor.

type WebBackForwardList

type WebBackForwardList struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebBackForwardList wraps android.webkit.WebBackForwardList.

func (*WebBackForwardList) GetCurrentIndex

func (m *WebBackForwardList) GetCurrentIndex() (int32, error)

GetCurrentIndex calls android.webkit.WebBackForwardList.getCurrentIndex.

func (*WebBackForwardList) GetCurrentItem

func (m *WebBackForwardList) GetCurrentItem() (*jni.Object, error)

GetCurrentItem calls android.webkit.WebBackForwardList.getCurrentItem.

func (*WebBackForwardList) GetItemAtIndex

func (m *WebBackForwardList) GetItemAtIndex(arg0 int32) (*jni.Object, error)

GetItemAtIndex calls android.webkit.WebBackForwardList.getItemAtIndex.

func (*WebBackForwardList) GetSize

func (m *WebBackForwardList) GetSize() (int32, error)

GetSize calls android.webkit.WebBackForwardList.getSize.

type WebChromeClient

type WebChromeClient struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebChromeClient wraps android.webkit.WebChromeClient.

func NewWebChromeClient

func NewWebChromeClient(vm *jni.VM) (*WebChromeClient, error)

NewWebChromeClient creates a new android.webkit.WebChromeClient instance.

func (*WebChromeClient) GetDefaultVideoPoster

func (m *WebChromeClient) GetDefaultVideoPoster() (*jni.Object, error)

GetDefaultVideoPoster calls android.webkit.WebChromeClient.getDefaultVideoPoster.

func (*WebChromeClient) GetVideoLoadingProgressView

func (m *WebChromeClient) GetVideoLoadingProgressView() (*jni.Object, error)

GetVideoLoadingProgressView calls android.webkit.WebChromeClient.getVideoLoadingProgressView.

func (*WebChromeClient) OnCloseWindow

func (m *WebChromeClient) OnCloseWindow(arg0 *jni.Object) error

OnCloseWindow calls android.webkit.WebChromeClient.onCloseWindow.

func (*WebChromeClient) OnConsoleMessage1

func (m *WebChromeClient) OnConsoleMessage1(arg0 *jni.Object) (bool, error)

OnConsoleMessage1 calls android.webkit.WebChromeClient.onConsoleMessage.

func (*WebChromeClient) OnConsoleMessage3_1

func (m *WebChromeClient) OnConsoleMessage3_1(
	arg0 string,
	arg1 int32,
	arg2 string,
) error

OnConsoleMessage3_1 calls android.webkit.WebChromeClient.onConsoleMessage.

func (*WebChromeClient) OnCreateWindow

func (m *WebChromeClient) OnCreateWindow(
	arg0 *jni.Object,
	arg1 bool,
	arg2 bool,
	arg3 *jni.Object,
) (bool, error)

OnCreateWindow calls android.webkit.WebChromeClient.onCreateWindow.

func (*WebChromeClient) OnExceededDatabaseQuota

func (m *WebChromeClient) OnExceededDatabaseQuota(
	arg0 string,
	arg1 string,
	arg2 int64,
	arg3 int64,
	arg4 int64,
	arg5 *jni.Object,
) error

OnExceededDatabaseQuota calls android.webkit.WebChromeClient.onExceededDatabaseQuota.

func (*WebChromeClient) OnGeolocationPermissionsHidePrompt

func (m *WebChromeClient) OnGeolocationPermissionsHidePrompt() error

OnGeolocationPermissionsHidePrompt calls android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt.

func (*WebChromeClient) OnGeolocationPermissionsShowPrompt

func (m *WebChromeClient) OnGeolocationPermissionsShowPrompt(arg0 string, arg1 *jni.Object) error

OnGeolocationPermissionsShowPrompt calls android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt.

func (*WebChromeClient) OnHideCustomView

func (m *WebChromeClient) OnHideCustomView() error

OnHideCustomView calls android.webkit.WebChromeClient.onHideCustomView.

func (*WebChromeClient) OnJsAlert

func (m *WebChromeClient) OnJsAlert(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 *jni.Object,
) (bool, error)

OnJsAlert calls android.webkit.WebChromeClient.onJsAlert.

func (*WebChromeClient) OnJsBeforeUnload

func (m *WebChromeClient) OnJsBeforeUnload(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 *jni.Object,
) (bool, error)

OnJsBeforeUnload calls android.webkit.WebChromeClient.onJsBeforeUnload.

func (*WebChromeClient) OnJsConfirm

func (m *WebChromeClient) OnJsConfirm(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 *jni.Object,
) (bool, error)

OnJsConfirm calls android.webkit.WebChromeClient.onJsConfirm.

func (*WebChromeClient) OnJsPrompt

func (m *WebChromeClient) OnJsPrompt(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 string,
	arg4 *jni.Object,
) (bool, error)

OnJsPrompt calls android.webkit.WebChromeClient.onJsPrompt.

func (*WebChromeClient) OnJsTimeout

func (m *WebChromeClient) OnJsTimeout() (bool, error)

OnJsTimeout calls android.webkit.WebChromeClient.onJsTimeout.

func (*WebChromeClient) OnPermissionRequest

func (m *WebChromeClient) OnPermissionRequest(arg0 *jni.Object) error

OnPermissionRequest calls android.webkit.WebChromeClient.onPermissionRequest.

func (*WebChromeClient) OnPermissionRequestCanceled

func (m *WebChromeClient) OnPermissionRequestCanceled(arg0 *jni.Object) error

OnPermissionRequestCanceled calls android.webkit.WebChromeClient.onPermissionRequestCanceled.

func (*WebChromeClient) OnProgressChanged

func (m *WebChromeClient) OnProgressChanged(arg0 *jni.Object, arg1 int32) error

OnProgressChanged calls android.webkit.WebChromeClient.onProgressChanged.

func (*WebChromeClient) OnReceivedIcon

func (m *WebChromeClient) OnReceivedIcon(arg0 *jni.Object, arg1 *jni.Object) error

OnReceivedIcon calls android.webkit.WebChromeClient.onReceivedIcon.

func (*WebChromeClient) OnReceivedTitle

func (m *WebChromeClient) OnReceivedTitle(arg0 *jni.Object, arg1 string) error

OnReceivedTitle calls android.webkit.WebChromeClient.onReceivedTitle.

func (*WebChromeClient) OnReceivedTouchIconUrl

func (m *WebChromeClient) OnReceivedTouchIconUrl(
	arg0 *jni.Object,
	arg1 string,
	arg2 bool,
) error

OnReceivedTouchIconUrl calls android.webkit.WebChromeClient.onReceivedTouchIconUrl.

func (*WebChromeClient) OnRequestFocus

func (m *WebChromeClient) OnRequestFocus(arg0 *jni.Object) error

OnRequestFocus calls android.webkit.WebChromeClient.onRequestFocus.

func (*WebChromeClient) OnShowCustomView2

func (m *WebChromeClient) OnShowCustomView2(arg0 *jni.Object, arg1 *jni.Object) error

OnShowCustomView2 calls android.webkit.WebChromeClient.onShowCustomView.

func (*WebChromeClient) OnShowCustomView3_1

func (m *WebChromeClient) OnShowCustomView3_1(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) error

OnShowCustomView3_1 calls android.webkit.WebChromeClient.onShowCustomView.

type WebChromeClientCustomViewCallback

type WebChromeClientCustomViewCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebChromeClientCustomViewCallback wraps android.webkit.WebChromeClient$CustomViewCallback.

func (*WebChromeClientCustomViewCallback) OnCustomViewHidden

func (m *WebChromeClientCustomViewCallback) OnCustomViewHidden() error

OnCustomViewHidden calls android.webkit.WebChromeClient$CustomViewCallback.onCustomViewHidden.

type WebChromeClientFileChooserParams

type WebChromeClientFileChooserParams struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebChromeClientFileChooserParams wraps android.webkit.WebChromeClient$FileChooserParams.

func (*WebChromeClientFileChooserParams) CreateIntent

func (m *WebChromeClientFileChooserParams) CreateIntent() (*jni.Object, error)

CreateIntent calls android.webkit.WebChromeClient$FileChooserParams.createIntent.

func (*WebChromeClientFileChooserParams) GetAcceptTypes

func (m *WebChromeClientFileChooserParams) GetAcceptTypes() (*jni.Object, error)

GetAcceptTypes calls android.webkit.WebChromeClient$FileChooserParams.getAcceptTypes.

func (*WebChromeClientFileChooserParams) GetFilenameHint

func (m *WebChromeClientFileChooserParams) GetFilenameHint() (string, error)

GetFilenameHint calls android.webkit.WebChromeClient$FileChooserParams.getFilenameHint.

func (*WebChromeClientFileChooserParams) GetMode

GetMode calls android.webkit.WebChromeClient$FileChooserParams.getMode.

func (*WebChromeClientFileChooserParams) GetTitle

GetTitle calls android.webkit.WebChromeClient$FileChooserParams.getTitle.

func (*WebChromeClientFileChooserParams) IsCaptureEnabled

func (m *WebChromeClientFileChooserParams) IsCaptureEnabled() (bool, error)

IsCaptureEnabled calls android.webkit.WebChromeClient$FileChooserParams.isCaptureEnabled.

func (*WebChromeClientFileChooserParams) ParseResult

func (m *WebChromeClientFileChooserParams) ParseResult(arg0 int32, arg1 *jni.Object) (*jni.Object, error)

ParseResult calls android.webkit.WebChromeClient$FileChooserParams.parseResult.

type WebHistoryItem

type WebHistoryItem struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebHistoryItem wraps android.webkit.WebHistoryItem.

func (*WebHistoryItem) GetFavicon

func (m *WebHistoryItem) GetFavicon() (*jni.Object, error)

GetFavicon calls android.webkit.WebHistoryItem.getFavicon.

func (*WebHistoryItem) GetOriginalUrl

func (m *WebHistoryItem) GetOriginalUrl() (string, error)

GetOriginalUrl calls android.webkit.WebHistoryItem.getOriginalUrl.

func (*WebHistoryItem) GetTitle

func (m *WebHistoryItem) GetTitle() (string, error)

GetTitle calls android.webkit.WebHistoryItem.getTitle.

func (*WebHistoryItem) GetUrl

func (m *WebHistoryItem) GetUrl() (string, error)

GetUrl calls android.webkit.WebHistoryItem.getUrl.

type WebIconDatabase

type WebIconDatabase struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebIconDatabase wraps android.webkit.WebIconDatabase.

func (*WebIconDatabase) Close

func (m *WebIconDatabase) Close() error

Close calls android.webkit.WebIconDatabase.close.

func (*WebIconDatabase) GetInstance

func (m *WebIconDatabase) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.WebIconDatabase.getInstance.

func (*WebIconDatabase) Open

func (m *WebIconDatabase) Open(arg0 string) error

Open calls android.webkit.WebIconDatabase.open.

func (*WebIconDatabase) ReleaseIconForPageUrl

func (m *WebIconDatabase) ReleaseIconForPageUrl(arg0 string) error

ReleaseIconForPageUrl calls android.webkit.WebIconDatabase.releaseIconForPageUrl.

func (*WebIconDatabase) RemoveAllIcons

func (m *WebIconDatabase) RemoveAllIcons() error

RemoveAllIcons calls android.webkit.WebIconDatabase.removeAllIcons.

func (*WebIconDatabase) RequestIconForPageUrl

func (m *WebIconDatabase) RequestIconForPageUrl(arg0 string, arg1 *jni.Object) error

RequestIconForPageUrl calls android.webkit.WebIconDatabase.requestIconForPageUrl.

func (*WebIconDatabase) RetainIconForPageUrl

func (m *WebIconDatabase) RetainIconForPageUrl(arg0 string) error

RetainIconForPageUrl calls android.webkit.WebIconDatabase.retainIconForPageUrl.

type WebIconDatabaseIconListener

type WebIconDatabaseIconListener struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebIconDatabaseIconListener wraps android.webkit.WebIconDatabase$IconListener.

func (*WebIconDatabaseIconListener) OnReceivedIcon

func (m *WebIconDatabaseIconListener) OnReceivedIcon(arg0 string, arg1 *jni.Object) error

OnReceivedIcon calls android.webkit.WebIconDatabase$IconListener.onReceivedIcon.

type WebMessage

type WebMessage struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebMessage wraps android.webkit.WebMessage.

func NewWebMessage

func NewWebMessage(vm *jni.VM, arg0 string) (*WebMessage, error)

NewWebMessage creates a new android.webkit.WebMessage instance.

func (*WebMessage) GetData

func (m *WebMessage) GetData() (string, error)

GetData calls android.webkit.WebMessage.getData.

func (*WebMessage) GetPorts

func (m *WebMessage) GetPorts() (*jni.Object, error)

GetPorts calls android.webkit.WebMessage.getPorts.

type WebMessagePort

type WebMessagePort struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebMessagePort wraps android.webkit.WebMessagePort.

func (*WebMessagePort) Close

func (m *WebMessagePort) Close() error

Close calls android.webkit.WebMessagePort.close.

func (*WebMessagePort) PostMessage

func (m *WebMessagePort) PostMessage(arg0 *jni.Object) error

PostMessage calls android.webkit.WebMessagePort.postMessage.

func (*WebMessagePort) SetWebMessageCallback

func (m *WebMessagePort) SetWebMessageCallback(arg0 *jni.Object) error

SetWebMessageCallback calls android.webkit.WebMessagePort.setWebMessageCallback.

type WebMessagePortWebMessageCallback

type WebMessagePortWebMessageCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebMessagePortWebMessageCallback wraps android.webkit.WebMessagePort$WebMessageCallback.

func (*WebMessagePortWebMessageCallback) OnMessage

func (m *WebMessagePortWebMessageCallback) OnMessage(arg0 *jni.Object, arg1 *jni.Object) error

OnMessage calls android.webkit.WebMessagePort$WebMessageCallback.onMessage.

type WebResourceError

type WebResourceError struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebResourceError wraps android.webkit.WebResourceError.

func (*WebResourceError) GetDescription

func (m *WebResourceError) GetDescription() (*jni.Object, error)

GetDescription calls android.webkit.WebResourceError.getDescription.

func (*WebResourceError) GetErrorCode

func (m *WebResourceError) GetErrorCode() (int32, error)

GetErrorCode calls android.webkit.WebResourceError.getErrorCode.

type WebResourceRequest

type WebResourceRequest struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebResourceRequest wraps android.webkit.WebResourceRequest.

func (*WebResourceRequest) GetMethod

func (m *WebResourceRequest) GetMethod() (string, error)

GetMethod calls android.webkit.WebResourceRequest.getMethod.

func (*WebResourceRequest) GetUrl

func (m *WebResourceRequest) GetUrl() (*jni.Object, error)

GetUrl calls android.webkit.WebResourceRequest.getUrl.

func (*WebResourceRequest) HasGesture

func (m *WebResourceRequest) HasGesture() (bool, error)

HasGesture calls android.webkit.WebResourceRequest.hasGesture.

func (*WebResourceRequest) IsForMainFrame

func (m *WebResourceRequest) IsForMainFrame() (bool, error)

IsForMainFrame calls android.webkit.WebResourceRequest.isForMainFrame.

func (*WebResourceRequest) IsRedirect

func (m *WebResourceRequest) IsRedirect() (bool, error)

IsRedirect calls android.webkit.WebResourceRequest.isRedirect.

type WebResourceResponse

type WebResourceResponse struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebResourceResponse wraps android.webkit.WebResourceResponse.

func NewWebResourceResponse

func NewWebResourceResponse(vm *jni.VM, arg0 string, arg1 string, arg2 int32, arg3 string, arg4 *jni.Object, arg5 *jni.Object) (*WebResourceResponse, error)

NewWebResourceResponse creates a new android.webkit.WebResourceResponse instance.

func (*WebResourceResponse) GetData

func (m *WebResourceResponse) GetData() (*jni.Object, error)

GetData calls android.webkit.WebResourceResponse.getData.

func (*WebResourceResponse) GetEncoding

func (m *WebResourceResponse) GetEncoding() (string, error)

GetEncoding calls android.webkit.WebResourceResponse.getEncoding.

func (*WebResourceResponse) GetMimeType

func (m *WebResourceResponse) GetMimeType() (string, error)

GetMimeType calls android.webkit.WebResourceResponse.getMimeType.

func (*WebResourceResponse) GetReasonPhrase

func (m *WebResourceResponse) GetReasonPhrase() (string, error)

GetReasonPhrase calls android.webkit.WebResourceResponse.getReasonPhrase.

func (*WebResourceResponse) GetStatusCode

func (m *WebResourceResponse) GetStatusCode() (int32, error)

GetStatusCode calls android.webkit.WebResourceResponse.getStatusCode.

func (*WebResourceResponse) SetData

func (m *WebResourceResponse) SetData(arg0 *jni.Object) error

SetData calls android.webkit.WebResourceResponse.setData.

func (*WebResourceResponse) SetEncoding

func (m *WebResourceResponse) SetEncoding(arg0 string) error

SetEncoding calls android.webkit.WebResourceResponse.setEncoding.

func (*WebResourceResponse) SetMimeType

func (m *WebResourceResponse) SetMimeType(arg0 string) error

SetMimeType calls android.webkit.WebResourceResponse.setMimeType.

func (*WebResourceResponse) SetStatusCodeAndReasonPhrase

func (m *WebResourceResponse) SetStatusCodeAndReasonPhrase(arg0 int32, arg1 string) error

SetStatusCodeAndReasonPhrase calls android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase.

type WebSettings

type WebSettings struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettings wraps android.webkit.WebSettings.

func (*WebSettings) EnableSmoothTransition

func (m *WebSettings) EnableSmoothTransition() (bool, error)

EnableSmoothTransition calls android.webkit.WebSettings.enableSmoothTransition.

func (*WebSettings) GetAllowContentAccess

func (m *WebSettings) GetAllowContentAccess() (bool, error)

GetAllowContentAccess calls android.webkit.WebSettings.getAllowContentAccess.

func (*WebSettings) GetAllowFileAccess

func (m *WebSettings) GetAllowFileAccess() (bool, error)

GetAllowFileAccess calls android.webkit.WebSettings.getAllowFileAccess.

func (*WebSettings) GetAllowFileAccessFromFileURLs

func (m *WebSettings) GetAllowFileAccessFromFileURLs() (bool, error)

GetAllowFileAccessFromFileURLs calls android.webkit.WebSettings.getAllowFileAccessFromFileURLs.

func (*WebSettings) GetAllowUniversalAccessFromFileURLs

func (m *WebSettings) GetAllowUniversalAccessFromFileURLs() (bool, error)

GetAllowUniversalAccessFromFileURLs calls android.webkit.WebSettings.getAllowUniversalAccessFromFileURLs.

func (*WebSettings) GetBlockNetworkImage

func (m *WebSettings) GetBlockNetworkImage() (bool, error)

GetBlockNetworkImage calls android.webkit.WebSettings.getBlockNetworkImage.

func (*WebSettings) GetBlockNetworkLoads

func (m *WebSettings) GetBlockNetworkLoads() (bool, error)

GetBlockNetworkLoads calls android.webkit.WebSettings.getBlockNetworkLoads.

func (*WebSettings) GetBuiltInZoomControls

func (m *WebSettings) GetBuiltInZoomControls() (bool, error)

GetBuiltInZoomControls calls android.webkit.WebSettings.getBuiltInZoomControls.

func (*WebSettings) GetCacheMode

func (m *WebSettings) GetCacheMode() (int32, error)

GetCacheMode calls android.webkit.WebSettings.getCacheMode.

func (*WebSettings) GetCursiveFontFamily

func (m *WebSettings) GetCursiveFontFamily() (string, error)

GetCursiveFontFamily calls android.webkit.WebSettings.getCursiveFontFamily.

func (*WebSettings) GetDatabaseEnabled

func (m *WebSettings) GetDatabaseEnabled() (bool, error)

GetDatabaseEnabled calls android.webkit.WebSettings.getDatabaseEnabled.

func (*WebSettings) GetDatabasePath

func (m *WebSettings) GetDatabasePath() (string, error)

GetDatabasePath calls android.webkit.WebSettings.getDatabasePath.

func (*WebSettings) GetDefaultFixedFontSize

func (m *WebSettings) GetDefaultFixedFontSize() (int32, error)

GetDefaultFixedFontSize calls android.webkit.WebSettings.getDefaultFixedFontSize.

func (*WebSettings) GetDefaultFontSize

func (m *WebSettings) GetDefaultFontSize() (int32, error)

GetDefaultFontSize calls android.webkit.WebSettings.getDefaultFontSize.

func (*WebSettings) GetDefaultTextEncodingName

func (m *WebSettings) GetDefaultTextEncodingName() (string, error)

GetDefaultTextEncodingName calls android.webkit.WebSettings.getDefaultTextEncodingName.

func (*WebSettings) GetDefaultUserAgent

func (m *WebSettings) GetDefaultUserAgent(arg0 *jni.Object) (string, error)

GetDefaultUserAgent calls android.webkit.WebSettings.getDefaultUserAgent.

func (*WebSettings) GetDefaultZoom

func (m *WebSettings) GetDefaultZoom() (*jni.Object, error)

GetDefaultZoom calls android.webkit.WebSettings.getDefaultZoom.

func (*WebSettings) GetDisabledActionModeMenuItems

func (m *WebSettings) GetDisabledActionModeMenuItems() (int32, error)

GetDisabledActionModeMenuItems calls android.webkit.WebSettings.getDisabledActionModeMenuItems.

func (*WebSettings) GetDisplayZoomControls

func (m *WebSettings) GetDisplayZoomControls() (bool, error)

GetDisplayZoomControls calls android.webkit.WebSettings.getDisplayZoomControls.

func (*WebSettings) GetDomStorageEnabled

func (m *WebSettings) GetDomStorageEnabled() (bool, error)

GetDomStorageEnabled calls android.webkit.WebSettings.getDomStorageEnabled.

func (*WebSettings) GetFantasyFontFamily

func (m *WebSettings) GetFantasyFontFamily() (string, error)

GetFantasyFontFamily calls android.webkit.WebSettings.getFantasyFontFamily.

func (*WebSettings) GetFixedFontFamily

func (m *WebSettings) GetFixedFontFamily() (string, error)

GetFixedFontFamily calls android.webkit.WebSettings.getFixedFontFamily.

func (*WebSettings) GetForceDark

func (m *WebSettings) GetForceDark() (int32, error)

GetForceDark calls android.webkit.WebSettings.getForceDark.

func (*WebSettings) GetJavaScriptCanOpenWindowsAutomatically

func (m *WebSettings) GetJavaScriptCanOpenWindowsAutomatically() (bool, error)

GetJavaScriptCanOpenWindowsAutomatically calls android.webkit.WebSettings.getJavaScriptCanOpenWindowsAutomatically.

func (*WebSettings) GetJavaScriptEnabled

func (m *WebSettings) GetJavaScriptEnabled() (bool, error)

GetJavaScriptEnabled calls android.webkit.WebSettings.getJavaScriptEnabled.

func (*WebSettings) GetLayoutAlgorithm

func (m *WebSettings) GetLayoutAlgorithm() (*jni.Object, error)

GetLayoutAlgorithm calls android.webkit.WebSettings.getLayoutAlgorithm.

func (*WebSettings) GetLightTouchEnabled

func (m *WebSettings) GetLightTouchEnabled() (bool, error)

GetLightTouchEnabled calls android.webkit.WebSettings.getLightTouchEnabled.

func (*WebSettings) GetLoadWithOverviewMode

func (m *WebSettings) GetLoadWithOverviewMode() (bool, error)

GetLoadWithOverviewMode calls android.webkit.WebSettings.getLoadWithOverviewMode.

func (*WebSettings) GetLoadsImagesAutomatically

func (m *WebSettings) GetLoadsImagesAutomatically() (bool, error)

GetLoadsImagesAutomatically calls android.webkit.WebSettings.getLoadsImagesAutomatically.

func (*WebSettings) GetMediaPlaybackRequiresUserGesture

func (m *WebSettings) GetMediaPlaybackRequiresUserGesture() (bool, error)

GetMediaPlaybackRequiresUserGesture calls android.webkit.WebSettings.getMediaPlaybackRequiresUserGesture.

func (*WebSettings) GetMinimumFontSize

func (m *WebSettings) GetMinimumFontSize() (int32, error)

GetMinimumFontSize calls android.webkit.WebSettings.getMinimumFontSize.

func (*WebSettings) GetMinimumLogicalFontSize

func (m *WebSettings) GetMinimumLogicalFontSize() (int32, error)

GetMinimumLogicalFontSize calls android.webkit.WebSettings.getMinimumLogicalFontSize.

func (*WebSettings) GetMixedContentMode

func (m *WebSettings) GetMixedContentMode() (int32, error)

GetMixedContentMode calls android.webkit.WebSettings.getMixedContentMode.

func (*WebSettings) GetOffscreenPreRaster

func (m *WebSettings) GetOffscreenPreRaster() (bool, error)

GetOffscreenPreRaster calls android.webkit.WebSettings.getOffscreenPreRaster.

func (*WebSettings) GetPluginState

func (m *WebSettings) GetPluginState() (*jni.Object, error)

GetPluginState calls android.webkit.WebSettings.getPluginState.

func (*WebSettings) GetSafeBrowsingEnabled

func (m *WebSettings) GetSafeBrowsingEnabled() (bool, error)

GetSafeBrowsingEnabled calls android.webkit.WebSettings.getSafeBrowsingEnabled.

func (*WebSettings) GetSansSerifFontFamily

func (m *WebSettings) GetSansSerifFontFamily() (string, error)

GetSansSerifFontFamily calls android.webkit.WebSettings.getSansSerifFontFamily.

func (*WebSettings) GetSaveFormData

func (m *WebSettings) GetSaveFormData() (bool, error)

GetSaveFormData calls android.webkit.WebSettings.getSaveFormData.

func (*WebSettings) GetSavePassword

func (m *WebSettings) GetSavePassword() (bool, error)

GetSavePassword calls android.webkit.WebSettings.getSavePassword.

func (*WebSettings) GetSerifFontFamily

func (m *WebSettings) GetSerifFontFamily() (string, error)

GetSerifFontFamily calls android.webkit.WebSettings.getSerifFontFamily.

func (*WebSettings) GetStandardFontFamily

func (m *WebSettings) GetStandardFontFamily() (string, error)

GetStandardFontFamily calls android.webkit.WebSettings.getStandardFontFamily.

func (*WebSettings) GetTextZoom

func (m *WebSettings) GetTextZoom() (int32, error)

GetTextZoom calls android.webkit.WebSettings.getTextZoom.

func (*WebSettings) GetUseWideViewPort

func (m *WebSettings) GetUseWideViewPort() (bool, error)

GetUseWideViewPort calls android.webkit.WebSettings.getUseWideViewPort.

func (*WebSettings) GetUserAgentString

func (m *WebSettings) GetUserAgentString() (string, error)

GetUserAgentString calls android.webkit.WebSettings.getUserAgentString.

func (*WebSettings) IsAlgorithmicDarkeningAllowed

func (m *WebSettings) IsAlgorithmicDarkeningAllowed() (bool, error)

IsAlgorithmicDarkeningAllowed calls android.webkit.WebSettings.isAlgorithmicDarkeningAllowed.

func (*WebSettings) SetAlgorithmicDarkeningAllowed

func (m *WebSettings) SetAlgorithmicDarkeningAllowed(arg0 bool) error

SetAlgorithmicDarkeningAllowed calls android.webkit.WebSettings.setAlgorithmicDarkeningAllowed.

func (*WebSettings) SetAllowContentAccess

func (m *WebSettings) SetAllowContentAccess(arg0 bool) error

SetAllowContentAccess calls android.webkit.WebSettings.setAllowContentAccess.

func (*WebSettings) SetAllowFileAccess

func (m *WebSettings) SetAllowFileAccess(arg0 bool) error

SetAllowFileAccess calls android.webkit.WebSettings.setAllowFileAccess.

func (*WebSettings) SetAllowFileAccessFromFileURLs

func (m *WebSettings) SetAllowFileAccessFromFileURLs(arg0 bool) error

SetAllowFileAccessFromFileURLs calls android.webkit.WebSettings.setAllowFileAccessFromFileURLs.

func (*WebSettings) SetAllowUniversalAccessFromFileURLs

func (m *WebSettings) SetAllowUniversalAccessFromFileURLs(arg0 bool) error

SetAllowUniversalAccessFromFileURLs calls android.webkit.WebSettings.setAllowUniversalAccessFromFileURLs.

func (*WebSettings) SetBlockNetworkImage

func (m *WebSettings) SetBlockNetworkImage(arg0 bool) error

SetBlockNetworkImage calls android.webkit.WebSettings.setBlockNetworkImage.

func (*WebSettings) SetBlockNetworkLoads

func (m *WebSettings) SetBlockNetworkLoads(arg0 bool) error

SetBlockNetworkLoads calls android.webkit.WebSettings.setBlockNetworkLoads.

func (*WebSettings) SetBuiltInZoomControls

func (m *WebSettings) SetBuiltInZoomControls(arg0 bool) error

SetBuiltInZoomControls calls android.webkit.WebSettings.setBuiltInZoomControls.

func (*WebSettings) SetCacheMode

func (m *WebSettings) SetCacheMode(arg0 int32) error

SetCacheMode calls android.webkit.WebSettings.setCacheMode.

func (*WebSettings) SetCursiveFontFamily

func (m *WebSettings) SetCursiveFontFamily(arg0 string) error

SetCursiveFontFamily calls android.webkit.WebSettings.setCursiveFontFamily.

func (*WebSettings) SetDatabaseEnabled

func (m *WebSettings) SetDatabaseEnabled(arg0 bool) error

SetDatabaseEnabled calls android.webkit.WebSettings.setDatabaseEnabled.

func (*WebSettings) SetDatabasePath

func (m *WebSettings) SetDatabasePath(arg0 string) error

SetDatabasePath calls android.webkit.WebSettings.setDatabasePath.

func (*WebSettings) SetDefaultFixedFontSize

func (m *WebSettings) SetDefaultFixedFontSize(arg0 int32) error

SetDefaultFixedFontSize calls android.webkit.WebSettings.setDefaultFixedFontSize.

func (*WebSettings) SetDefaultFontSize

func (m *WebSettings) SetDefaultFontSize(arg0 int32) error

SetDefaultFontSize calls android.webkit.WebSettings.setDefaultFontSize.

func (*WebSettings) SetDefaultTextEncodingName

func (m *WebSettings) SetDefaultTextEncodingName(arg0 string) error

SetDefaultTextEncodingName calls android.webkit.WebSettings.setDefaultTextEncodingName.

func (*WebSettings) SetDefaultZoom

func (m *WebSettings) SetDefaultZoom(arg0 *jni.Object) error

SetDefaultZoom calls android.webkit.WebSettings.setDefaultZoom.

func (*WebSettings) SetDisabledActionModeMenuItems

func (m *WebSettings) SetDisabledActionModeMenuItems(arg0 int32) error

SetDisabledActionModeMenuItems calls android.webkit.WebSettings.setDisabledActionModeMenuItems.

func (*WebSettings) SetDisplayZoomControls

func (m *WebSettings) SetDisplayZoomControls(arg0 bool) error

SetDisplayZoomControls calls android.webkit.WebSettings.setDisplayZoomControls.

func (*WebSettings) SetDomStorageEnabled

func (m *WebSettings) SetDomStorageEnabled(arg0 bool) error

SetDomStorageEnabled calls android.webkit.WebSettings.setDomStorageEnabled.

func (*WebSettings) SetEnableSmoothTransition

func (m *WebSettings) SetEnableSmoothTransition(arg0 bool) error

SetEnableSmoothTransition calls android.webkit.WebSettings.setEnableSmoothTransition.

func (*WebSettings) SetFantasyFontFamily

func (m *WebSettings) SetFantasyFontFamily(arg0 string) error

SetFantasyFontFamily calls android.webkit.WebSettings.setFantasyFontFamily.

func (*WebSettings) SetFixedFontFamily

func (m *WebSettings) SetFixedFontFamily(arg0 string) error

SetFixedFontFamily calls android.webkit.WebSettings.setFixedFontFamily.

func (*WebSettings) SetForceDark

func (m *WebSettings) SetForceDark(arg0 int32) error

SetForceDark calls android.webkit.WebSettings.setForceDark.

func (*WebSettings) SetGeolocationDatabasePath

func (m *WebSettings) SetGeolocationDatabasePath(arg0 string) error

SetGeolocationDatabasePath calls android.webkit.WebSettings.setGeolocationDatabasePath.

func (*WebSettings) SetGeolocationEnabled

func (m *WebSettings) SetGeolocationEnabled(arg0 bool) error

SetGeolocationEnabled calls android.webkit.WebSettings.setGeolocationEnabled.

func (*WebSettings) SetJavaScriptCanOpenWindowsAutomatically

func (m *WebSettings) SetJavaScriptCanOpenWindowsAutomatically(arg0 bool) error

SetJavaScriptCanOpenWindowsAutomatically calls android.webkit.WebSettings.setJavaScriptCanOpenWindowsAutomatically.

func (*WebSettings) SetJavaScriptEnabled

func (m *WebSettings) SetJavaScriptEnabled(arg0 bool) error

SetJavaScriptEnabled calls android.webkit.WebSettings.setJavaScriptEnabled.

func (*WebSettings) SetLayoutAlgorithm

func (m *WebSettings) SetLayoutAlgorithm(arg0 *jni.Object) error

SetLayoutAlgorithm calls android.webkit.WebSettings.setLayoutAlgorithm.

func (*WebSettings) SetLightTouchEnabled

func (m *WebSettings) SetLightTouchEnabled(arg0 bool) error

SetLightTouchEnabled calls android.webkit.WebSettings.setLightTouchEnabled.

func (*WebSettings) SetLoadWithOverviewMode

func (m *WebSettings) SetLoadWithOverviewMode(arg0 bool) error

SetLoadWithOverviewMode calls android.webkit.WebSettings.setLoadWithOverviewMode.

func (*WebSettings) SetLoadsImagesAutomatically

func (m *WebSettings) SetLoadsImagesAutomatically(arg0 bool) error

SetLoadsImagesAutomatically calls android.webkit.WebSettings.setLoadsImagesAutomatically.

func (*WebSettings) SetMediaPlaybackRequiresUserGesture

func (m *WebSettings) SetMediaPlaybackRequiresUserGesture(arg0 bool) error

SetMediaPlaybackRequiresUserGesture calls android.webkit.WebSettings.setMediaPlaybackRequiresUserGesture.

func (*WebSettings) SetMinimumFontSize

func (m *WebSettings) SetMinimumFontSize(arg0 int32) error

SetMinimumFontSize calls android.webkit.WebSettings.setMinimumFontSize.

func (*WebSettings) SetMinimumLogicalFontSize

func (m *WebSettings) SetMinimumLogicalFontSize(arg0 int32) error

SetMinimumLogicalFontSize calls android.webkit.WebSettings.setMinimumLogicalFontSize.

func (*WebSettings) SetMixedContentMode

func (m *WebSettings) SetMixedContentMode(arg0 int32) error

SetMixedContentMode calls android.webkit.WebSettings.setMixedContentMode.

func (*WebSettings) SetNeedInitialFocus

func (m *WebSettings) SetNeedInitialFocus(arg0 bool) error

SetNeedInitialFocus calls android.webkit.WebSettings.setNeedInitialFocus.

func (*WebSettings) SetOffscreenPreRaster

func (m *WebSettings) SetOffscreenPreRaster(arg0 bool) error

SetOffscreenPreRaster calls android.webkit.WebSettings.setOffscreenPreRaster.

func (*WebSettings) SetPluginState

func (m *WebSettings) SetPluginState(arg0 *jni.Object) error

SetPluginState calls android.webkit.WebSettings.setPluginState.

func (*WebSettings) SetRenderPriority

func (m *WebSettings) SetRenderPriority(arg0 *jni.Object) error

SetRenderPriority calls android.webkit.WebSettings.setRenderPriority.

func (*WebSettings) SetSafeBrowsingEnabled

func (m *WebSettings) SetSafeBrowsingEnabled(arg0 bool) error

SetSafeBrowsingEnabled calls android.webkit.WebSettings.setSafeBrowsingEnabled.

func (*WebSettings) SetSansSerifFontFamily

func (m *WebSettings) SetSansSerifFontFamily(arg0 string) error

SetSansSerifFontFamily calls android.webkit.WebSettings.setSansSerifFontFamily.

func (*WebSettings) SetSaveFormData

func (m *WebSettings) SetSaveFormData(arg0 bool) error

SetSaveFormData calls android.webkit.WebSettings.setSaveFormData.

func (*WebSettings) SetSavePassword

func (m *WebSettings) SetSavePassword(arg0 bool) error

SetSavePassword calls android.webkit.WebSettings.setSavePassword.

func (*WebSettings) SetSerifFontFamily

func (m *WebSettings) SetSerifFontFamily(arg0 string) error

SetSerifFontFamily calls android.webkit.WebSettings.setSerifFontFamily.

func (*WebSettings) SetStandardFontFamily

func (m *WebSettings) SetStandardFontFamily(arg0 string) error

SetStandardFontFamily calls android.webkit.WebSettings.setStandardFontFamily.

func (*WebSettings) SetSupportMultipleWindows

func (m *WebSettings) SetSupportMultipleWindows(arg0 bool) error

SetSupportMultipleWindows calls android.webkit.WebSettings.setSupportMultipleWindows.

func (*WebSettings) SetSupportZoom

func (m *WebSettings) SetSupportZoom(arg0 bool) error

SetSupportZoom calls android.webkit.WebSettings.setSupportZoom.

func (*WebSettings) SetTextZoom

func (m *WebSettings) SetTextZoom(arg0 int32) error

SetTextZoom calls android.webkit.WebSettings.setTextZoom.

func (*WebSettings) SetUseWideViewPort

func (m *WebSettings) SetUseWideViewPort(arg0 bool) error

SetUseWideViewPort calls android.webkit.WebSettings.setUseWideViewPort.

func (*WebSettings) SetUserAgentString

func (m *WebSettings) SetUserAgentString(arg0 string) error

SetUserAgentString calls android.webkit.WebSettings.setUserAgentString.

func (*WebSettings) SupportMultipleWindows

func (m *WebSettings) SupportMultipleWindows() (bool, error)

SupportMultipleWindows calls android.webkit.WebSettings.supportMultipleWindows.

func (*WebSettings) SupportZoom

func (m *WebSettings) SupportZoom() (bool, error)

SupportZoom calls android.webkit.WebSettings.supportZoom.

type WebSettingsLayoutAlgorithm

type WebSettingsLayoutAlgorithm struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettingsLayoutAlgorithm wraps android.webkit.WebSettings$LayoutAlgorithm.

func (*WebSettingsLayoutAlgorithm) ValueOf

func (m *WebSettingsLayoutAlgorithm) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.WebSettings$LayoutAlgorithm.valueOf.

func (*WebSettingsLayoutAlgorithm) Values

func (m *WebSettingsLayoutAlgorithm) Values() (*jni.Object, error)

Values calls android.webkit.WebSettings$LayoutAlgorithm.values.

type WebSettingsPluginState

type WebSettingsPluginState struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettingsPluginState wraps android.webkit.WebSettings$PluginState.

func (*WebSettingsPluginState) ValueOf

func (m *WebSettingsPluginState) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.WebSettings$PluginState.valueOf.

func (*WebSettingsPluginState) Values

func (m *WebSettingsPluginState) Values() (*jni.Object, error)

Values calls android.webkit.WebSettings$PluginState.values.

type WebSettingsRenderPriority

type WebSettingsRenderPriority struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettingsRenderPriority wraps android.webkit.WebSettings$RenderPriority.

func (*WebSettingsRenderPriority) ValueOf

func (m *WebSettingsRenderPriority) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.WebSettings$RenderPriority.valueOf.

func (*WebSettingsRenderPriority) Values

func (m *WebSettingsRenderPriority) Values() (*jni.Object, error)

Values calls android.webkit.WebSettings$RenderPriority.values.

type WebSettingsTextSize

type WebSettingsTextSize struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettingsTextSize wraps android.webkit.WebSettings$TextSize.

func (*WebSettingsTextSize) ValueOf

func (m *WebSettingsTextSize) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.WebSettings$TextSize.valueOf.

func (*WebSettingsTextSize) Values

func (m *WebSettingsTextSize) Values() (*jni.Object, error)

Values calls android.webkit.WebSettings$TextSize.values.

type WebSettingsZoomDensity

type WebSettingsZoomDensity struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebSettingsZoomDensity wraps android.webkit.WebSettings$ZoomDensity.

func (*WebSettingsZoomDensity) ValueOf

func (m *WebSettingsZoomDensity) ValueOf(arg0 string) (*jni.Object, error)

ValueOf calls android.webkit.WebSettings$ZoomDensity.valueOf.

func (*WebSettingsZoomDensity) Values

func (m *WebSettingsZoomDensity) Values() (*jni.Object, error)

Values calls android.webkit.WebSettings$ZoomDensity.values.

type WebStorage

type WebStorage struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebStorage wraps android.webkit.WebStorage.

func (*WebStorage) DeleteAllData

func (m *WebStorage) DeleteAllData() error

DeleteAllData calls android.webkit.WebStorage.deleteAllData.

func (*WebStorage) DeleteOrigin

func (m *WebStorage) DeleteOrigin(arg0 string) error

DeleteOrigin calls android.webkit.WebStorage.deleteOrigin.

func (*WebStorage) GetInstance

func (m *WebStorage) GetInstance() (*jni.Object, error)

GetInstance calls android.webkit.WebStorage.getInstance.

func (*WebStorage) SetQuotaForOrigin

func (m *WebStorage) SetQuotaForOrigin(arg0 string, arg1 int64) error

SetQuotaForOrigin calls android.webkit.WebStorage.setQuotaForOrigin.

type WebStorageOrigin

type WebStorageOrigin struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebStorageOrigin wraps android.webkit.WebStorage$Origin.

func (*WebStorageOrigin) GetOrigin

func (m *WebStorageOrigin) GetOrigin() (string, error)

GetOrigin calls android.webkit.WebStorage$Origin.getOrigin.

func (*WebStorageOrigin) GetQuota

func (m *WebStorageOrigin) GetQuota() (int64, error)

GetQuota calls android.webkit.WebStorage$Origin.getQuota.

func (*WebStorageOrigin) GetUsage

func (m *WebStorageOrigin) GetUsage() (int64, error)

GetUsage calls android.webkit.WebStorage$Origin.getUsage.

type WebStorageQuotaUpdater

type WebStorageQuotaUpdater struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebStorageQuotaUpdater wraps android.webkit.WebStorage$QuotaUpdater.

func (*WebStorageQuotaUpdater) UpdateQuota

func (m *WebStorageQuotaUpdater) UpdateQuota(arg0 int64) error

UpdateQuota calls android.webkit.WebStorage$QuotaUpdater.updateQuota.

type WebView

type WebView struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebView wraps android.webkit.WebView.

func NewWebView

func NewWebView(vm *jni.VM, arg0 *jni.Object) (*WebView, error)

NewWebView creates a new android.webkit.WebView instance.

func (*WebView) AddJavascriptInterface

func (m *WebView) AddJavascriptInterface(arg0 *jni.Object, arg1 string) error

AddJavascriptInterface calls android.webkit.WebView.addJavascriptInterface.

func (*WebView) CanGoBack

func (m *WebView) CanGoBack() (bool, error)

CanGoBack calls android.webkit.WebView.canGoBack.

func (*WebView) CanGoBackOrForward

func (m *WebView) CanGoBackOrForward(arg0 int32) (bool, error)

CanGoBackOrForward calls android.webkit.WebView.canGoBackOrForward.

func (*WebView) CanGoForward

func (m *WebView) CanGoForward() (bool, error)

CanGoForward calls android.webkit.WebView.canGoForward.

func (*WebView) CanZoomIn

func (m *WebView) CanZoomIn() (bool, error)

CanZoomIn calls android.webkit.WebView.canZoomIn.

func (*WebView) CanZoomOut

func (m *WebView) CanZoomOut() (bool, error)

CanZoomOut calls android.webkit.WebView.canZoomOut.

func (*WebView) CapturePicture

func (m *WebView) CapturePicture() (*jni.Object, error)

CapturePicture calls android.webkit.WebView.capturePicture.

func (*WebView) ClearCache

func (m *WebView) ClearCache(arg0 bool) error

ClearCache calls android.webkit.WebView.clearCache.

func (*WebView) ClearClientCertPreferences

func (m *WebView) ClearClientCertPreferences(arg0 *jni.Object) error

ClearClientCertPreferences calls android.webkit.WebView.clearClientCertPreferences.

func (*WebView) ClearFormData

func (m *WebView) ClearFormData() error

ClearFormData calls android.webkit.WebView.clearFormData.

func (*WebView) ClearHistory

func (m *WebView) ClearHistory() error

ClearHistory calls android.webkit.WebView.clearHistory.

func (*WebView) ClearMatches

func (m *WebView) ClearMatches() error

ClearMatches calls android.webkit.WebView.clearMatches.

func (*WebView) ClearSslPreferences

func (m *WebView) ClearSslPreferences() error

ClearSslPreferences calls android.webkit.WebView.clearSslPreferences.

func (*WebView) ClearView

func (m *WebView) ClearView() error

ClearView calls android.webkit.WebView.clearView.

func (*WebView) ComputeScroll

func (m *WebView) ComputeScroll() error

ComputeScroll calls android.webkit.WebView.computeScroll.

func (*WebView) CopyBackForwardList

func (m *WebView) CopyBackForwardList() (*jni.Object, error)

CopyBackForwardList calls android.webkit.WebView.copyBackForwardList.

func (*WebView) CreatePrintDocumentAdapter0

func (m *WebView) CreatePrintDocumentAdapter0() (*jni.Object, error)

CreatePrintDocumentAdapter0 calls android.webkit.WebView.createPrintDocumentAdapter.

func (*WebView) CreatePrintDocumentAdapter1_1

func (m *WebView) CreatePrintDocumentAdapter1_1(arg0 string) (*jni.Object, error)

CreatePrintDocumentAdapter1_1 calls android.webkit.WebView.createPrintDocumentAdapter.

func (*WebView) CreateWebMessageChannel

func (m *WebView) CreateWebMessageChannel() (*jni.Object, error)

CreateWebMessageChannel calls android.webkit.WebView.createWebMessageChannel.

func (*WebView) Destroy

func (m *WebView) Destroy() error

Destroy calls android.webkit.WebView.destroy.

func (*WebView) DisableWebView

func (m *WebView) DisableWebView() error

DisableWebView calls android.webkit.WebView.disableWebView.

func (*WebView) DispatchKeyEvent

func (m *WebView) DispatchKeyEvent(arg0 *jni.Object) (bool, error)

DispatchKeyEvent calls android.webkit.WebView.dispatchKeyEvent.

func (*WebView) DocumentHasImages

func (m *WebView) DocumentHasImages(arg0 *jni.Object) error

DocumentHasImages calls android.webkit.WebView.documentHasImages.

func (*WebView) EnableSlowWholeDocumentDraw

func (m *WebView) EnableSlowWholeDocumentDraw() error

EnableSlowWholeDocumentDraw calls android.webkit.WebView.enableSlowWholeDocumentDraw.

func (*WebView) FindAddress

func (m *WebView) FindAddress(arg0 string) (string, error)

FindAddress calls android.webkit.WebView.findAddress.

func (*WebView) FindAll

func (m *WebView) FindAll(arg0 string) (int32, error)

FindAll calls android.webkit.WebView.findAll.

func (*WebView) FindAllAsync

func (m *WebView) FindAllAsync(arg0 string) error

FindAllAsync calls android.webkit.WebView.findAllAsync.

func (*WebView) FindFocus

func (m *WebView) FindFocus() (*jni.Object, error)

FindFocus calls android.webkit.WebView.findFocus.

func (*WebView) FindNext

func (m *WebView) FindNext(arg0 bool) error

FindNext calls android.webkit.WebView.findNext.

func (*WebView) FlingScroll

func (m *WebView) FlingScroll(arg0 int32, arg1 int32) error

FlingScroll calls android.webkit.WebView.flingScroll.

func (*WebView) FreeMemory

func (m *WebView) FreeMemory() error

FreeMemory calls android.webkit.WebView.freeMemory.

func (*WebView) GetAccessibilityClassName

func (m *WebView) GetAccessibilityClassName() (*jni.Object, error)

GetAccessibilityClassName calls android.webkit.WebView.getAccessibilityClassName.

func (*WebView) GetAccessibilityNodeProvider

func (m *WebView) GetAccessibilityNodeProvider() (*jni.Object, error)

GetAccessibilityNodeProvider calls android.webkit.WebView.getAccessibilityNodeProvider.

func (*WebView) GetCertificate

func (m *WebView) GetCertificate() (*jni.Object, error)

GetCertificate calls android.webkit.WebView.getCertificate.

func (*WebView) GetContentHeight

func (m *WebView) GetContentHeight() (int32, error)

GetContentHeight calls android.webkit.WebView.getContentHeight.

func (*WebView) GetCurrentWebViewPackage

func (m *WebView) GetCurrentWebViewPackage() (*jni.Object, error)

GetCurrentWebViewPackage calls android.webkit.WebView.getCurrentWebViewPackage.

func (*WebView) GetFavicon

func (m *WebView) GetFavicon() (*jni.Object, error)

GetFavicon calls android.webkit.WebView.getFavicon.

func (*WebView) GetHandler

func (m *WebView) GetHandler() (*jni.Object, error)

GetHandler calls android.webkit.WebView.getHandler.

func (*WebView) GetHitTestResult

func (m *WebView) GetHitTestResult() (*jni.Object, error)

GetHitTestResult calls android.webkit.WebView.getHitTestResult.

func (*WebView) GetHttpAuthUsernamePassword

func (m *WebView) GetHttpAuthUsernamePassword(arg0 string, arg1 string) (*jni.Object, error)

GetHttpAuthUsernamePassword calls android.webkit.WebView.getHttpAuthUsernamePassword.

func (*WebView) GetOriginalUrl

func (m *WebView) GetOriginalUrl() (string, error)

GetOriginalUrl calls android.webkit.WebView.getOriginalUrl.

func (*WebView) GetProgress

func (m *WebView) GetProgress() (int32, error)

GetProgress calls android.webkit.WebView.getProgress.

func (*WebView) GetRendererPriorityWaivedWhenNotVisible

func (m *WebView) GetRendererPriorityWaivedWhenNotVisible() (bool, error)

GetRendererPriorityWaivedWhenNotVisible calls android.webkit.WebView.getRendererPriorityWaivedWhenNotVisible.

func (*WebView) GetRendererRequestedPriority

func (m *WebView) GetRendererRequestedPriority() (int32, error)

GetRendererRequestedPriority calls android.webkit.WebView.getRendererRequestedPriority.

func (*WebView) GetSafeBrowsingPrivacyPolicyUrl

func (m *WebView) GetSafeBrowsingPrivacyPolicyUrl() (*jni.Object, error)

GetSafeBrowsingPrivacyPolicyUrl calls android.webkit.WebView.getSafeBrowsingPrivacyPolicyUrl.

func (*WebView) GetScale

func (m *WebView) GetScale() (float32, error)

GetScale calls android.webkit.WebView.getScale.

func (*WebView) GetSettings

func (m *WebView) GetSettings() (*jni.Object, error)

GetSettings calls android.webkit.WebView.getSettings.

func (*WebView) GetTextClassifier

func (m *WebView) GetTextClassifier() (*jni.Object, error)

GetTextClassifier calls android.webkit.WebView.getTextClassifier.

func (*WebView) GetTitle

func (m *WebView) GetTitle() (string, error)

GetTitle calls android.webkit.WebView.getTitle.

func (*WebView) GetUrl

func (m *WebView) GetUrl() (string, error)

GetUrl calls android.webkit.WebView.getUrl.

func (*WebView) GetWebChromeClient

func (m *WebView) GetWebChromeClient() (*jni.Object, error)

GetWebChromeClient calls android.webkit.WebView.getWebChromeClient.

func (*WebView) GetWebViewClassLoader

func (m *WebView) GetWebViewClassLoader() (*jni.Object, error)

GetWebViewClassLoader calls android.webkit.WebView.getWebViewClassLoader.

func (*WebView) GetWebViewClient

func (m *WebView) GetWebViewClient() (*jni.Object, error)

GetWebViewClient calls android.webkit.WebView.getWebViewClient.

func (*WebView) GetWebViewLooper

func (m *WebView) GetWebViewLooper() (*jni.Object, error)

GetWebViewLooper calls android.webkit.WebView.getWebViewLooper.

func (*WebView) GetWebViewRenderProcess

func (m *WebView) GetWebViewRenderProcess() (*jni.Object, error)

GetWebViewRenderProcess calls android.webkit.WebView.getWebViewRenderProcess.

func (*WebView) GetWebViewRenderProcessClient

func (m *WebView) GetWebViewRenderProcessClient() (*jni.Object, error)

GetWebViewRenderProcessClient calls android.webkit.WebView.getWebViewRenderProcessClient.

func (*WebView) GoBack

func (m *WebView) GoBack() error

GoBack calls android.webkit.WebView.goBack.

func (*WebView) GoBackOrForward

func (m *WebView) GoBackOrForward(arg0 int32) error

GoBackOrForward calls android.webkit.WebView.goBackOrForward.

func (*WebView) GoForward

func (m *WebView) GoForward() error

GoForward calls android.webkit.WebView.goForward.

func (*WebView) InvokeZoomPicker

func (m *WebView) InvokeZoomPicker() error

InvokeZoomPicker calls android.webkit.WebView.invokeZoomPicker.

func (*WebView) IsPrivateBrowsingEnabled

func (m *WebView) IsPrivateBrowsingEnabled() (bool, error)

IsPrivateBrowsingEnabled calls android.webkit.WebView.isPrivateBrowsingEnabled.

func (*WebView) IsVisibleToUserForAutofill

func (m *WebView) IsVisibleToUserForAutofill(arg0 int32) (bool, error)

IsVisibleToUserForAutofill calls android.webkit.WebView.isVisibleToUserForAutofill.

func (*WebView) LoadData

func (m *WebView) LoadData(
	arg0 string,
	arg1 string,
	arg2 string,
) error

LoadData calls android.webkit.WebView.loadData.

func (*WebView) LoadDataWithBaseURL

func (m *WebView) LoadDataWithBaseURL(
	arg0 string,
	arg1 string,
	arg2 string,
	arg3 string,
	arg4 string,
) error

LoadDataWithBaseURL calls android.webkit.WebView.loadDataWithBaseURL.

func (*WebView) LoadUrl

func (m *WebView) LoadUrl(arg0 string) error

LoadUrl calls android.webkit.WebView.loadUrl.

func (*WebView) OnApplyWindowInsets

func (m *WebView) OnApplyWindowInsets(arg0 *jni.Object) (*jni.Object, error)

OnApplyWindowInsets calls android.webkit.WebView.onApplyWindowInsets.

func (*WebView) OnCheckIsTextEditor

func (m *WebView) OnCheckIsTextEditor() (bool, error)

OnCheckIsTextEditor calls android.webkit.WebView.onCheckIsTextEditor.

func (*WebView) OnChildViewAdded

func (m *WebView) OnChildViewAdded(arg0 *jni.Object, arg1 *jni.Object) error

OnChildViewAdded calls android.webkit.WebView.onChildViewAdded.

func (*WebView) OnChildViewRemoved

func (m *WebView) OnChildViewRemoved(arg0 *jni.Object, arg1 *jni.Object) error

OnChildViewRemoved calls android.webkit.WebView.onChildViewRemoved.

func (*WebView) OnCreateInputConnection

func (m *WebView) OnCreateInputConnection(arg0 *jni.Object) (*jni.Object, error)

OnCreateInputConnection calls android.webkit.WebView.onCreateInputConnection.

func (*WebView) OnDragEvent

func (m *WebView) OnDragEvent(arg0 *jni.Object) (bool, error)

OnDragEvent calls android.webkit.WebView.onDragEvent.

func (*WebView) OnFinishTemporaryDetach

func (m *WebView) OnFinishTemporaryDetach() error

OnFinishTemporaryDetach calls android.webkit.WebView.onFinishTemporaryDetach.

func (*WebView) OnGenericMotionEvent

func (m *WebView) OnGenericMotionEvent(arg0 *jni.Object) (bool, error)

OnGenericMotionEvent calls android.webkit.WebView.onGenericMotionEvent.

func (*WebView) OnGlobalFocusChanged

func (m *WebView) OnGlobalFocusChanged(arg0 *jni.Object, arg1 *jni.Object) error

OnGlobalFocusChanged calls android.webkit.WebView.onGlobalFocusChanged.

func (*WebView) OnHoverEvent

func (m *WebView) OnHoverEvent(arg0 *jni.Object) (bool, error)

OnHoverEvent calls android.webkit.WebView.onHoverEvent.

func (*WebView) OnKeyDown

func (m *WebView) OnKeyDown(arg0 int32, arg1 *jni.Object) (bool, error)

OnKeyDown calls android.webkit.WebView.onKeyDown.

func (*WebView) OnKeyMultiple

func (m *WebView) OnKeyMultiple(
	arg0 int32,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

OnKeyMultiple calls android.webkit.WebView.onKeyMultiple.

func (*WebView) OnKeyUp

func (m *WebView) OnKeyUp(arg0 int32, arg1 *jni.Object) (bool, error)

OnKeyUp calls android.webkit.WebView.onKeyUp.

func (*WebView) OnPause

func (m *WebView) OnPause() error

OnPause calls android.webkit.WebView.onPause.

func (*WebView) OnProvideAutofillVirtualStructure

func (m *WebView) OnProvideAutofillVirtualStructure(arg0 *jni.Object, arg1 int32) error

OnProvideAutofillVirtualStructure calls android.webkit.WebView.onProvideAutofillVirtualStructure.

func (*WebView) OnProvideContentCaptureStructure

func (m *WebView) OnProvideContentCaptureStructure(arg0 *jni.Object, arg1 int32) error

OnProvideContentCaptureStructure calls android.webkit.WebView.onProvideContentCaptureStructure.

func (*WebView) OnProvideVirtualStructure

func (m *WebView) OnProvideVirtualStructure(arg0 *jni.Object) error

OnProvideVirtualStructure calls android.webkit.WebView.onProvideVirtualStructure.

func (*WebView) OnResolvePointerIcon

func (m *WebView) OnResolvePointerIcon(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

OnResolvePointerIcon calls android.webkit.WebView.onResolvePointerIcon.

func (*WebView) OnResume

func (m *WebView) OnResume() error

OnResume calls android.webkit.WebView.onResume.

func (*WebView) OnStartTemporaryDetach

func (m *WebView) OnStartTemporaryDetach() error

OnStartTemporaryDetach calls android.webkit.WebView.onStartTemporaryDetach.

func (*WebView) OnTouchEvent

func (m *WebView) OnTouchEvent(arg0 *jni.Object) (bool, error)

OnTouchEvent calls android.webkit.WebView.onTouchEvent.

func (*WebView) OnTrackballEvent

func (m *WebView) OnTrackballEvent(arg0 *jni.Object) (bool, error)

OnTrackballEvent calls android.webkit.WebView.onTrackballEvent.

func (*WebView) OnWindowFocusChanged

func (m *WebView) OnWindowFocusChanged(arg0 bool) error

OnWindowFocusChanged calls android.webkit.WebView.onWindowFocusChanged.

func (*WebView) OverlayHorizontalScrollbar

func (m *WebView) OverlayHorizontalScrollbar() (bool, error)

OverlayHorizontalScrollbar calls android.webkit.WebView.overlayHorizontalScrollbar.

func (*WebView) OverlayVerticalScrollbar

func (m *WebView) OverlayVerticalScrollbar() (bool, error)

OverlayVerticalScrollbar calls android.webkit.WebView.overlayVerticalScrollbar.

func (*WebView) PageDown

func (m *WebView) PageDown(arg0 bool) (bool, error)

PageDown calls android.webkit.WebView.pageDown.

func (*WebView) PageUp

func (m *WebView) PageUp(arg0 bool) (bool, error)

PageUp calls android.webkit.WebView.pageUp.

func (*WebView) PauseTimers

func (m *WebView) PauseTimers() error

PauseTimers calls android.webkit.WebView.pauseTimers.

func (*WebView) PerformLongClick

func (m *WebView) PerformLongClick() (bool, error)

PerformLongClick calls android.webkit.WebView.performLongClick.

func (*WebView) PostUrl

func (m *WebView) PostUrl(arg0 string, arg1 *jni.Object) error

PostUrl calls android.webkit.WebView.postUrl.

func (*WebView) PostVisualStateCallback

func (m *WebView) PostVisualStateCallback(arg0 int64, arg1 *jni.Object) error

PostVisualStateCallback calls android.webkit.WebView.postVisualStateCallback.

func (*WebView) PostWebMessage

func (m *WebView) PostWebMessage(arg0 *jni.Object, arg1 *jni.Object) error

PostWebMessage calls android.webkit.WebView.postWebMessage.

func (*WebView) Reload

func (m *WebView) Reload() error

Reload calls android.webkit.WebView.reload.

func (*WebView) RemoveJavascriptInterface

func (m *WebView) RemoveJavascriptInterface(arg0 string) error

RemoveJavascriptInterface calls android.webkit.WebView.removeJavascriptInterface.

func (*WebView) RequestChildRectangleOnScreen

func (m *WebView) RequestChildRectangleOnScreen(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 bool,
) (bool, error)

RequestChildRectangleOnScreen calls android.webkit.WebView.requestChildRectangleOnScreen.

func (*WebView) RequestFocus

func (m *WebView) RequestFocus(arg0 int32, arg1 *jni.Object) (bool, error)

RequestFocus calls android.webkit.WebView.requestFocus.

func (*WebView) RequestFocusNodeHref

func (m *WebView) RequestFocusNodeHref(arg0 *jni.Object) error

RequestFocusNodeHref calls android.webkit.WebView.requestFocusNodeHref.

func (*WebView) RequestImageRef

func (m *WebView) RequestImageRef(arg0 *jni.Object) error

RequestImageRef calls android.webkit.WebView.requestImageRef.

func (*WebView) RestoreState

func (m *WebView) RestoreState(arg0 *jni.Object) (*jni.Object, error)

RestoreState calls android.webkit.WebView.restoreState.

func (*WebView) ResumeTimers

func (m *WebView) ResumeTimers() error

ResumeTimers calls android.webkit.WebView.resumeTimers.

func (*WebView) SavePassword

func (m *WebView) SavePassword(
	arg0 string,
	arg1 string,
	arg2 string,
) error

SavePassword calls android.webkit.WebView.savePassword.

func (*WebView) SaveState

func (m *WebView) SaveState(arg0 *jni.Object) (*jni.Object, error)

SaveState calls android.webkit.WebView.saveState.

func (*WebView) SaveWebArchive

func (m *WebView) SaveWebArchive(arg0 string) error

SaveWebArchive calls android.webkit.WebView.saveWebArchive.

func (*WebView) SetBackgroundColor

func (m *WebView) SetBackgroundColor(arg0 int32) error

SetBackgroundColor calls android.webkit.WebView.setBackgroundColor.

func (*WebView) SetCertificate

func (m *WebView) SetCertificate(arg0 *jni.Object) error

SetCertificate calls android.webkit.WebView.setCertificate.

func (*WebView) SetDataDirectorySuffix

func (m *WebView) SetDataDirectorySuffix(arg0 string) error

SetDataDirectorySuffix calls android.webkit.WebView.setDataDirectorySuffix.

func (*WebView) SetDownloadListener

func (m *WebView) SetDownloadListener(arg0 *jni.Object) error

SetDownloadListener calls android.webkit.WebView.setDownloadListener.

func (*WebView) SetFindListener

func (m *WebView) SetFindListener(arg0 *jni.Object) error

SetFindListener calls android.webkit.WebView.setFindListener.

func (*WebView) SetHorizontalScrollbarOverlay

func (m *WebView) SetHorizontalScrollbarOverlay(arg0 bool) error

SetHorizontalScrollbarOverlay calls android.webkit.WebView.setHorizontalScrollbarOverlay.

func (*WebView) SetHttpAuthUsernamePassword

func (m *WebView) SetHttpAuthUsernamePassword(
	arg0 string,
	arg1 string,
	arg2 string,
	arg3 string,
) error

SetHttpAuthUsernamePassword calls android.webkit.WebView.setHttpAuthUsernamePassword.

func (*WebView) SetInitialScale

func (m *WebView) SetInitialScale(arg0 int32) error

SetInitialScale calls android.webkit.WebView.setInitialScale.

func (*WebView) SetLayerType

func (m *WebView) SetLayerType(arg0 int32, arg1 *jni.Object) error

SetLayerType calls android.webkit.WebView.setLayerType.

func (*WebView) SetLayoutParams

func (m *WebView) SetLayoutParams(arg0 *jni.Object) error

SetLayoutParams calls android.webkit.WebView.setLayoutParams.

func (*WebView) SetMapTrackballToArrowKeys

func (m *WebView) SetMapTrackballToArrowKeys(arg0 bool) error

SetMapTrackballToArrowKeys calls android.webkit.WebView.setMapTrackballToArrowKeys.

func (*WebView) SetNetworkAvailable

func (m *WebView) SetNetworkAvailable(arg0 bool) error

SetNetworkAvailable calls android.webkit.WebView.setNetworkAvailable.

func (*WebView) SetOverScrollMode

func (m *WebView) SetOverScrollMode(arg0 int32) error

SetOverScrollMode calls android.webkit.WebView.setOverScrollMode.

func (*WebView) SetPictureListener

func (m *WebView) SetPictureListener(arg0 *jni.Object) error

SetPictureListener calls android.webkit.WebView.setPictureListener.

func (*WebView) SetRendererPriorityPolicy

func (m *WebView) SetRendererPriorityPolicy(arg0 int32, arg1 bool) error

SetRendererPriorityPolicy calls android.webkit.WebView.setRendererPriorityPolicy.

func (*WebView) SetScrollBarStyle

func (m *WebView) SetScrollBarStyle(arg0 int32) error

SetScrollBarStyle calls android.webkit.WebView.setScrollBarStyle.

func (*WebView) SetTextClassifier

func (m *WebView) SetTextClassifier(arg0 *jni.Object) error

SetTextClassifier calls android.webkit.WebView.setTextClassifier.

func (*WebView) SetVerticalScrollbarOverlay

func (m *WebView) SetVerticalScrollbarOverlay(arg0 bool) error

SetVerticalScrollbarOverlay calls android.webkit.WebView.setVerticalScrollbarOverlay.

func (*WebView) SetWebChromeClient

func (m *WebView) SetWebChromeClient(arg0 *jni.Object) error

SetWebChromeClient calls android.webkit.WebView.setWebChromeClient.

func (*WebView) SetWebContentsDebuggingEnabled

func (m *WebView) SetWebContentsDebuggingEnabled(arg0 bool) error

SetWebContentsDebuggingEnabled calls android.webkit.WebView.setWebContentsDebuggingEnabled.

func (*WebView) SetWebViewClient

func (m *WebView) SetWebViewClient(arg0 *jni.Object) error

SetWebViewClient calls android.webkit.WebView.setWebViewClient.

func (*WebView) SetWebViewRenderProcessClient1

func (m *WebView) SetWebViewRenderProcessClient1(arg0 *jni.Object) error

SetWebViewRenderProcessClient1 calls android.webkit.WebView.setWebViewRenderProcessClient.

func (*WebView) SetWebViewRenderProcessClient2_1

func (m *WebView) SetWebViewRenderProcessClient2_1(arg0 *jni.Object, arg1 *jni.Object) error

SetWebViewRenderProcessClient2_1 calls android.webkit.WebView.setWebViewRenderProcessClient.

func (*WebView) ShouldDelayChildPressedState

func (m *WebView) ShouldDelayChildPressedState() (bool, error)

ShouldDelayChildPressedState calls android.webkit.WebView.shouldDelayChildPressedState.

func (*WebView) ShowFindDialog

func (m *WebView) ShowFindDialog(arg0 string, arg1 bool) (bool, error)

ShowFindDialog calls android.webkit.WebView.showFindDialog.

func (*WebView) StopLoading

func (m *WebView) StopLoading() error

StopLoading calls android.webkit.WebView.stopLoading.

func (*WebView) ZoomBy

func (m *WebView) ZoomBy(arg0 float32) error

ZoomBy calls android.webkit.WebView.zoomBy.

func (*WebView) ZoomIn

func (m *WebView) ZoomIn() (bool, error)

ZoomIn calls android.webkit.WebView.zoomIn.

func (*WebView) ZoomOut

func (m *WebView) ZoomOut() (bool, error)

ZoomOut calls android.webkit.WebView.zoomOut.

type WebViewClient

type WebViewClient struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewClient wraps android.webkit.WebViewClient.

func NewWebViewClient

func NewWebViewClient(vm *jni.VM) (*WebViewClient, error)

NewWebViewClient creates a new android.webkit.WebViewClient instance.

func (*WebViewClient) DoUpdateVisitedHistory

func (m *WebViewClient) DoUpdateVisitedHistory(
	arg0 *jni.Object,
	arg1 string,
	arg2 bool,
) error

DoUpdateVisitedHistory calls android.webkit.WebViewClient.doUpdateVisitedHistory.

func (*WebViewClient) OnFormResubmission

func (m *WebViewClient) OnFormResubmission(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

OnFormResubmission calls android.webkit.WebViewClient.onFormResubmission.

func (*WebViewClient) OnLoadResource

func (m *WebViewClient) OnLoadResource(arg0 *jni.Object, arg1 string) error

OnLoadResource calls android.webkit.WebViewClient.onLoadResource.

func (*WebViewClient) OnPageCommitVisible

func (m *WebViewClient) OnPageCommitVisible(arg0 *jni.Object, arg1 string) error

OnPageCommitVisible calls android.webkit.WebViewClient.onPageCommitVisible.

func (*WebViewClient) OnPageFinished

func (m *WebViewClient) OnPageFinished(arg0 *jni.Object, arg1 string) error

OnPageFinished calls android.webkit.WebViewClient.onPageFinished.

func (*WebViewClient) OnPageStarted

func (m *WebViewClient) OnPageStarted(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) error

OnPageStarted calls android.webkit.WebViewClient.onPageStarted.

func (*WebViewClient) OnReceivedClientCertRequest

func (m *WebViewClient) OnReceivedClientCertRequest(arg0 *jni.Object, arg1 *jni.Object) error

OnReceivedClientCertRequest calls android.webkit.WebViewClient.onReceivedClientCertRequest.

func (*WebViewClient) OnReceivedError3

func (m *WebViewClient) OnReceivedError3(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

OnReceivedError3 calls android.webkit.WebViewClient.onReceivedError.

func (*WebViewClient) OnReceivedError4_1

func (m *WebViewClient) OnReceivedError4_1(
	arg0 *jni.Object,
	arg1 int32,
	arg2 string,
	arg3 string,
) error

OnReceivedError4_1 calls android.webkit.WebViewClient.onReceivedError.

func (*WebViewClient) OnReceivedHttpError

func (m *WebViewClient) OnReceivedHttpError(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

OnReceivedHttpError calls android.webkit.WebViewClient.onReceivedHttpError.

func (*WebViewClient) OnReceivedLoginRequest

func (m *WebViewClient) OnReceivedLoginRequest(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 string,
) error

OnReceivedLoginRequest calls android.webkit.WebViewClient.onReceivedLoginRequest.

func (*WebViewClient) OnRenderProcessGone

func (m *WebViewClient) OnRenderProcessGone(arg0 *jni.Object, arg1 *jni.Object) (bool, error)

OnRenderProcessGone calls android.webkit.WebViewClient.onRenderProcessGone.

func (*WebViewClient) OnSafeBrowsingHit

func (m *WebViewClient) OnSafeBrowsingHit(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 int32,
	arg3 *jni.Object,
) error

OnSafeBrowsingHit calls android.webkit.WebViewClient.onSafeBrowsingHit.

func (*WebViewClient) OnScaleChanged

func (m *WebViewClient) OnScaleChanged(
	arg0 *jni.Object,
	arg1 float32,
	arg2 float32,
) error

OnScaleChanged calls android.webkit.WebViewClient.onScaleChanged.

func (*WebViewClient) OnTooManyRedirects

func (m *WebViewClient) OnTooManyRedirects(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

OnTooManyRedirects calls android.webkit.WebViewClient.onTooManyRedirects.

func (*WebViewClient) OnUnhandledKeyEvent

func (m *WebViewClient) OnUnhandledKeyEvent(arg0 *jni.Object, arg1 *jni.Object) error

OnUnhandledKeyEvent calls android.webkit.WebViewClient.onUnhandledKeyEvent.

func (*WebViewClient) ShouldInterceptRequest2

func (m *WebViewClient) ShouldInterceptRequest2(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

ShouldInterceptRequest2 calls android.webkit.WebViewClient.shouldInterceptRequest.

func (*WebViewClient) ShouldInterceptRequest2_1

func (m *WebViewClient) ShouldInterceptRequest2_1(arg0 *jni.Object, arg1 string) (*jni.Object, error)

ShouldInterceptRequest2_1 calls android.webkit.WebViewClient.shouldInterceptRequest.

func (*WebViewClient) ShouldOverrideKeyEvent

func (m *WebViewClient) ShouldOverrideKeyEvent(arg0 *jni.Object, arg1 *jni.Object) (bool, error)

ShouldOverrideKeyEvent calls android.webkit.WebViewClient.shouldOverrideKeyEvent.

func (*WebViewClient) ShouldOverrideUrlLoading2

func (m *WebViewClient) ShouldOverrideUrlLoading2(arg0 *jni.Object, arg1 *jni.Object) (bool, error)

ShouldOverrideUrlLoading2 calls android.webkit.WebViewClient.shouldOverrideUrlLoading.

func (*WebViewClient) ShouldOverrideUrlLoading2_1

func (m *WebViewClient) ShouldOverrideUrlLoading2_1(arg0 *jni.Object, arg1 string) (bool, error)

ShouldOverrideUrlLoading2_1 calls android.webkit.WebViewClient.shouldOverrideUrlLoading.

type WebViewDatabase

type WebViewDatabase struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewDatabase wraps android.webkit.WebViewDatabase.

func (*WebViewDatabase) ClearFormData

func (m *WebViewDatabase) ClearFormData() error

ClearFormData calls android.webkit.WebViewDatabase.clearFormData.

func (*WebViewDatabase) ClearHttpAuthUsernamePassword

func (m *WebViewDatabase) ClearHttpAuthUsernamePassword() error

ClearHttpAuthUsernamePassword calls android.webkit.WebViewDatabase.clearHttpAuthUsernamePassword.

func (*WebViewDatabase) ClearUsernamePassword

func (m *WebViewDatabase) ClearUsernamePassword() error

ClearUsernamePassword calls android.webkit.WebViewDatabase.clearUsernamePassword.

func (*WebViewDatabase) GetHttpAuthUsernamePassword

func (m *WebViewDatabase) GetHttpAuthUsernamePassword(arg0 string, arg1 string) (*jni.Object, error)

GetHttpAuthUsernamePassword calls android.webkit.WebViewDatabase.getHttpAuthUsernamePassword.

func (*WebViewDatabase) GetInstance

func (m *WebViewDatabase) GetInstance(arg0 *jni.Object) (*jni.Object, error)

GetInstance calls android.webkit.WebViewDatabase.getInstance.

func (*WebViewDatabase) HasFormData

func (m *WebViewDatabase) HasFormData() (bool, error)

HasFormData calls android.webkit.WebViewDatabase.hasFormData.

func (*WebViewDatabase) HasHttpAuthUsernamePassword

func (m *WebViewDatabase) HasHttpAuthUsernamePassword() (bool, error)

HasHttpAuthUsernamePassword calls android.webkit.WebViewDatabase.hasHttpAuthUsernamePassword.

func (*WebViewDatabase) HasUsernamePassword

func (m *WebViewDatabase) HasUsernamePassword() (bool, error)

HasUsernamePassword calls android.webkit.WebViewDatabase.hasUsernamePassword.

func (*WebViewDatabase) SetHttpAuthUsernamePassword

func (m *WebViewDatabase) SetHttpAuthUsernamePassword(
	arg0 string,
	arg1 string,
	arg2 string,
	arg3 string,
) error

SetHttpAuthUsernamePassword calls android.webkit.WebViewDatabase.setHttpAuthUsernamePassword.

type WebViewFindListener

type WebViewFindListener struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewFindListener wraps android.webkit.WebView$FindListener.

func (*WebViewFindListener) OnFindResultReceived

func (m *WebViewFindListener) OnFindResultReceived(
	arg0 int32,
	arg1 int32,
	arg2 bool,
) error

OnFindResultReceived calls android.webkit.WebView$FindListener.onFindResultReceived.

type WebViewFragment

type WebViewFragment struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewFragment wraps android.webkit.WebViewFragment.

func NewWebViewFragment

func NewWebViewFragment(vm *jni.VM) (*WebViewFragment, error)

NewWebViewFragment creates a new android.webkit.WebViewFragment instance.

func (*WebViewFragment) GetWebView

func (m *WebViewFragment) GetWebView() (*jni.Object, error)

GetWebView calls android.webkit.WebViewFragment.getWebView.

func (*WebViewFragment) OnCreateView

func (m *WebViewFragment) OnCreateView(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

OnCreateView calls android.webkit.WebViewFragment.onCreateView.

func (*WebViewFragment) OnDestroy

func (m *WebViewFragment) OnDestroy() error

OnDestroy calls android.webkit.WebViewFragment.onDestroy.

func (*WebViewFragment) OnDestroyView

func (m *WebViewFragment) OnDestroyView() error

OnDestroyView calls android.webkit.WebViewFragment.onDestroyView.

func (*WebViewFragment) OnPause

func (m *WebViewFragment) OnPause() error

OnPause calls android.webkit.WebViewFragment.onPause.

func (*WebViewFragment) OnResume

func (m *WebViewFragment) OnResume() error

OnResume calls android.webkit.WebViewFragment.onResume.

type WebViewHitTestResult

type WebViewHitTestResult struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewHitTestResult wraps android.webkit.WebView$HitTestResult.

func (*WebViewHitTestResult) GetExtra

func (m *WebViewHitTestResult) GetExtra() (string, error)

GetExtra calls android.webkit.WebView$HitTestResult.getExtra.

func (*WebViewHitTestResult) GetType

func (m *WebViewHitTestResult) GetType() (int32, error)

GetType calls android.webkit.WebView$HitTestResult.getType.

type WebViewPictureListener

type WebViewPictureListener struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewPictureListener wraps android.webkit.WebView$PictureListener.

func (*WebViewPictureListener) OnNewPicture

func (m *WebViewPictureListener) OnNewPicture(arg0 *jni.Object, arg1 *jni.Object) error

OnNewPicture calls android.webkit.WebView$PictureListener.onNewPicture.

type WebViewRenderProcess

type WebViewRenderProcess struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewRenderProcess wraps android.webkit.WebViewRenderProcess.

func (*WebViewRenderProcess) Terminate

func (m *WebViewRenderProcess) Terminate() (bool, error)

Terminate calls android.webkit.WebViewRenderProcess.terminate.

type WebViewRenderProcessClient

type WebViewRenderProcessClient struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewRenderProcessClient wraps android.webkit.WebViewRenderProcessClient.

func (*WebViewRenderProcessClient) OnRenderProcessResponsive

func (m *WebViewRenderProcessClient) OnRenderProcessResponsive(arg0 *jni.Object, arg1 *jni.Object) error

OnRenderProcessResponsive calls android.webkit.WebViewRenderProcessClient.onRenderProcessResponsive.

func (*WebViewRenderProcessClient) OnRenderProcessUnresponsive

func (m *WebViewRenderProcessClient) OnRenderProcessUnresponsive(arg0 *jni.Object, arg1 *jni.Object) error

OnRenderProcessUnresponsive calls android.webkit.WebViewRenderProcessClient.onRenderProcessUnresponsive.

type WebViewVisualStateCallback

type WebViewVisualStateCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

WebViewVisualStateCallback wraps android.webkit.WebView$VisualStateCallback.

func (*WebViewVisualStateCallback) OnComplete

func (m *WebViewVisualStateCallback) OnComplete(arg0 int64) error

OnComplete calls android.webkit.WebView$VisualStateCallback.onComplete.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL