summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-10 08:04:59 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-10 08:04:59 +0000
commit2c2c913822bb2817f46d8e81be69585e5b84490e (patch)
tree224907b1909e306ab65014d969e326ed1114ec29
parent4090bb42448530a716a327213fe04e9509705d3f (diff)
downloadchromium_src-2c2c913822bb2817f46d8e81be69585e5b84490e.zip
chromium_src-2c2c913822bb2817f46d8e81be69585e5b84490e.tar.gz
chromium_src-2c2c913822bb2817f46d8e81be69585e5b84490e.tar.bz2
Build fix.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28658 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/glue/webframe_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/webframe_impl.cc b/webkit/glue/webframe_impl.cc
index a784ef9..7a18b0b 100644
--- a/webkit/glue/webframe_impl.cc
+++ b/webkit/glue/webframe_impl.cc
@@ -763,7 +763,7 @@ void WebFrameImpl::loadHistoryItem(const WebHistoryItem& item) {
if (!current_item) {
current_item = HistoryItem::create();
current_item->setLastVisitWasFailure(true);
- frame_->loader()->history()->setCurrentItem(current_item);
+ frame_->loader()->history()->setCurrentItem(current_item.get());
GetWebViewImpl()->SetCurrentHistoryItem(current_item.get());
}