/**@class android.webkit.SslErrorHandler @extends android.os.Handler Represents a request for handling an SSL error. Instances of this class are created by the WebView and passed to {@link android.webkit.WebViewClient#onReceivedSslError}. The host application must call either {@link #proceed} or {@link #cancel} to set the WebView's response to the request. */ var SslErrorHandler = { /**Proceed with the SSL certificate. <p> It is not recommended to proceed past SSL errors and this method should generally not be used; see {@link android.webkit.WebViewClient#onReceivedSslError} for more information. */ proceed : function( ) {}, /**Cancel this request and all pending requests for the WebView that had the error. */ cancel : function( ) {}, };