/**@class android.webkit.WebView.VisualStateCallback
@extends java.lang.Object

 Callback interface supplied to {@link #postVisualStateCallback} for receiving
 notifications about the visual state.
*/
var VisualStateCallback = {

/**Invoked when the visual state is ready to be drawn in the next {@link #onDraw}.
@param {Number} requestId The identifier passed to {@link #postVisualStateCallback} when this
                  callback was posted.
*/
onComplete : function(  ) {},


};