/**@class android.webkit.RenderProcessGoneDetail @extends java.lang.Object This class provides more specific information about why the render process exited. The application may use this to decide how to handle the situation. */ var RenderProcessGoneDetail = { /**Indicates whether the render process was observed to crash, or whether it was killed by the system. If the render process was killed, this is most likely caused by the system being low on memory. @return {Boolean} {@code true} if render process crashed, otherwise it was killed by system. */ didCrash : function( ) {}, /**Returns the renderer priority that was set at the time that the renderer exited. This may be greater than the priority that any individual {@link android.webkit.WebView} requested using {@link android.webkit.WebView#setRendererPriorityPolicy}. @return {Number} the priority of the renderer at exit. */ rendererPriorityAtExit : function( ) {}, };