diff options
Diffstat (limited to 'WebKit/wx/WebFramePrivate.h')
| -rw-r--r-- | WebKit/wx/WebFramePrivate.h | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/WebKit/wx/WebFramePrivate.h b/WebKit/wx/WebFramePrivate.h index 7af70a8..58bc40a 100644 --- a/WebKit/wx/WebFramePrivate.h +++ b/WebKit/wx/WebFramePrivate.h @@ -30,11 +30,9 @@ #define WXWEBFRAMEPRIVATE_H #include "config.h" -#include "EditCommand.h" -#include "EditCommandWx.h" #include "Frame.h" -#include "wtf/RefPtr.h" -#include "wtf/Vector.h" +#include "HTMLFrameOwnerElement.h" +#include "KURL.h" class WebFramePrivate { @@ -42,11 +40,21 @@ public: WebFramePrivate() : frame(0) {} + + WebCore::Frame* frame; +}; - WTF::Vector<EditCommandWx> undoStack; - WTF::Vector<EditCommandWx> redoStack; +class WebViewFrameData +{ +public: + WebCore::KURL url; + WebCore::String name; + WebCore::HTMLFrameOwnerElement* ownerElement; - WTF::RefPtr<WebCore::Frame> frame; + WebCore::String referrer; + bool allowsScrolling; + int marginWidth; + int marginHeight; }; #endif |
