Rework the GTK WebKit backend history to remove the need for the map between wxWebHistoryItems and WebKitWebHistoryItems.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -14,6 +14,8 @@
|
||||
|
||||
#if wxUSE_WEBVIEW_WEBKIT
|
||||
|
||||
#include "webkit/webkit.h"
|
||||
|
||||
class WXDLLIMPEXP_WEB wxWebHistoryItem
|
||||
{
|
||||
public:
|
||||
@@ -22,8 +24,11 @@ public:
|
||||
wxString GetUrl() { return m_url; }
|
||||
wxString GetTitle() { return m_title; }
|
||||
|
||||
friend class wxWebViewWebKit;
|
||||
|
||||
private:
|
||||
wxString m_url, m_title;
|
||||
WebKitWebHistoryItem* m_histItem;
|
||||
};
|
||||
|
||||
#endif // wxUSE_WEBVIEW_WEBKIT
|
||||
|
Reference in New Issue
Block a user