Add stubs to osx webkit backend to allow compilation.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-07-05 17:06:12 +00:00
parent 9df97be2c1
commit 0e37936eb4

View File

@@ -74,6 +74,21 @@ public:
virtual bool CanSetZoomType(wxWebViewZoomType type) const;
virtual bool IsBusy() { return m_busy; }
//History functions
virtual void ClearHistory() {}
virtual void EnableHistory(bool enable = true) {}
virtual wxVector<wxSharedPtr<wxWebHistoryItem> > GetBackwardHistory()
{ return wxVector<wxSharedPtr<wxWebHistoryItem> >() }
virtual wxVector<wxSharedPtr<wxWebHistoryItem> > GetForwardHistory()
{ return wxVector<wxSharedPtr<wxWebHistoryItem> >() }
virtual void LoadHistoryItem(wxSharedPtr<wxWebHistoryItem> item) {}
//Undo / redo functionality
virtual bool CanUndo() {}
virtual bool CanRedo() {}
virtual void Undo() {}
virtual void Redo() {}
// ---- methods not from the parent (common) interface
wxString GetSelectedText();