Como obter a história da história no Android Webview

WebBackForwardList mWebBackForwardList = mWebView.copyBackForwardList();
String historyUrl =  mWebBackForwardList.getItemAtIndex(mWebBackForwardList.getCurrentIndex()-1).getUrl();
Anxious Alligator