summaryrefslogtreecommitdiffstats
path: root/WebKit/qt/Api/qwebframe_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/qt/Api/qwebframe_p.h')
-rw-r--r--WebKit/qt/Api/qwebframe_p.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/WebKit/qt/Api/qwebframe_p.h b/WebKit/qt/Api/qwebframe_p.h
index b5dda62..6d6eca1 100644
--- a/WebKit/qt/Api/qwebframe_p.h
+++ b/WebKit/qt/Api/qwebframe_p.h
@@ -31,6 +31,7 @@
#include "qwebelement.h"
#include "wtf/RefPtr.h"
#include "Frame.h"
+#include "ViewportArguments.h"
namespace WebCore {
class FrameLoaderClientQt;
@@ -71,7 +72,7 @@ public:
, allowsScrolling(true)
, marginWidth(-1)
, marginHeight(-1)
- , initialLayoutComplete(false)
+ , zoomTextOnly(false)
{}
void init(QWebFrame* qframe, QWebFrameData* frameData);
void setPage(QWebPage*);
@@ -99,7 +100,8 @@ public:
bool allowsScrolling;
int marginWidth;
int marginHeight;
- bool initialLayoutComplete;
+ bool zoomTextOnly;
+ WebCore::ViewportArguments viewportArguments;
};
class QWebHitTestResultPrivate {