diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-13 00:25:33 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-13 00:25:33 +0000 |
commit | 50c97b64ce7d8f248396d2dbe8b8fecd6add19bb (patch) | |
tree | 0a4aa371f57aa07b6a58927427ef177d659bfe3e /webkit/glue/webframe_impl.h | |
parent | b8ee17c89b64f9ab759f6b8aafda9046c4f34c88 (diff) | |
download | chromium_src-50c97b64ce7d8f248396d2dbe8b8fecd6add19bb.zip chromium_src-50c97b64ce7d8f248396d2dbe8b8fecd6add19bb.tar.gz chromium_src-50c97b64ce7d8f248396d2dbe8b8fecd6add19bb.tar.bz2 |
Move implementation of BackForwardListClient to a new class named
BackForwardListClientImpl.
R=dglazkov
Review URL: http://codereview.chromium.org/14407
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webframe_impl.h')
-rw-r--r-- | webkit/glue/webframe_impl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/glue/webframe_impl.h b/webkit/glue/webframe_impl.h index 44c3ed8..cdca806 100644 --- a/webkit/glue/webframe_impl.h +++ b/webkit/glue/webframe_impl.h @@ -37,6 +37,7 @@ #include "webkit/glue/webdatasource_impl.h" #include "webkit/glue/webframe.h" #include "webkit/glue/webframeloaderclient_impl.h" +#include "webkit/glue/webhistoryitem_impl.h" #include "webkit/glue/webplugin_delegate.h" #include "webkit/glue/webview_delegate.h" @@ -48,7 +49,6 @@ MSVC_POP_WARNING(); class AltErrorPageResourceFetcher; class WebErrorImpl; -class WebHistoryItemImpl; class WebRequest; class WebView; class WebViewImpl; @@ -216,7 +216,9 @@ class WebFrameImpl : public WebFrame { // If currently_loading_request is NULL, does nothing. void CacheCurrentRequestInfo(WebDataSourceImpl* datasource); - void set_currently_loading_history_item(WebHistoryItemImpl* item); + void set_currently_loading_history_item(WebHistoryItemImpl* item) { + currently_loading_history_item_ = item; + } // Getters for the impls corresponding to Get(Provisional)DataSource. They // may return NULL if there is no corresponding data source. |