/**@class android.webkit.WebHistoryItem
 implements java.lang.Cloneable

@extends java.lang.Object

 A convenience class for accessing fields in an entry in the back/forward list
 of a WebView. Each WebHistoryItem is a snapshot of the requested history
 item. Each history item may be updated during the load of a page.
 @see WebBackForwardList
*/
var WebHistoryItem = {

/**Return an identifier for this history item. If an item is a copy of
 another item, the identifiers will be the same even if they are not the
 same object.
@return {Number} The id for this item.
@deprecated This method is now obsolete.
@hide Since API level {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR1}
*/
getId : function(  ) {},

/**Return the url of this history item. The url is the base url of this
 history item. See getTargetUrl() for the url that is the actual target of
 this history item.
@return {String} The base url of this history item.
 Note: The VM ensures 32-bit atomic read/write operations so we don't have
 to synchronize this method.
*/
getUrl : function(  ) {},

/**Return the original url of this history item. This was the requested
 url, the final url may be different as there might have been
 redirects while loading the site.
@return {String} The original url of this history item.
*/
getOriginalUrl : function(  ) {},

/**Return the document title of this history item.
@return {String} The document title of this history item.
 Note: The VM ensures 32-bit atomic read/write operations so we don't have
 to synchronize this method.
*/
getTitle : function(  ) {},

/**Return the favicon of this history item or null if no favicon was found.
@return {Object {android.graphics.Bitmap}} A Bitmap containing the favicon for this history item or null.
 Note: The VM ensures 32-bit atomic read/write operations so we don't have
 to synchronize this method.
*/
getFavicon : function(  ) {},


};