diff --git a/CHROMIUM_BUILD_COMPATIBILITY.txt b/CHROMIUM_BUILD_COMPATIBILITY.txt index ae4a54a02..6737d51a8 100644 --- a/CHROMIUM_BUILD_COMPATIBILITY.txt +++ b/CHROMIUM_BUILD_COMPATIBILITY.txt @@ -8,3 +8,4 @@ development team. Date | CEF Revision | Chromium Revision ------------------------------------------------------------------------------- 2008-12-02 | /trunk@2 | /trunk@6213 +2008-12-05 | /trunk@3 | /trunk@6430 diff --git a/libcef/browser_webview_delegate.cc b/libcef/browser_webview_delegate.cc index de6ed0b5f..546635526 100644 --- a/libcef/browser_webview_delegate.cc +++ b/libcef/browser_webview_delegate.cc @@ -624,15 +624,11 @@ void BrowserWebViewDelegate::UpdateSessionHistory(WebFrame* frame) { if (!entry) return; - GURL url; - std::wstring title; std::string state; if (!browser_->UIT_GetWebView()->GetMainFrame()-> - GetPreviousState(&url, &title, &state)) + GetPreviousHistoryState(&state)) return; - entry->SetURL(url); - entry->SetTitle(title); entry->SetContentState(state); }