/**@class android.webkit.JsResult @extends java.lang.Object An instance of this class is passed as a parameter in various {@link android.webkit.WebChromeClient} action notifications. The object is used as a handle onto the underlying JavaScript-originated request, and provides a means for the client to indicate whether this action should proceed. */ var JsResult = { /**Handle the result if the user cancelled the dialog. */ cancel : function( ) {}, /**Handle a confirmation response from the user. */ confirm : function( ) {}, /** @hide Only for use by WebViewProvider implementations */ getResult : function( ) {}, };