browsercore/core/ZoomMetaData.h
changeset 6 1c3b8676e58c
parent 5 0f2326c2a325
child 15 73c48011b8c7
--- a/browsercore/core/ZoomMetaData.h	Wed Jun 23 17:59:43 2010 +0300
+++ b/browsercore/core/ZoomMetaData.h	Tue Jul 06 14:03:49 2010 +0300
@@ -22,6 +22,11 @@
 #ifndef __ZOOMMETADATA_H__
 #define __ZOOMMETADATA_H__
 
+#ifdef BEDROCK_TILED_BACKING_STORE
+#include <QRectF>
+#include <QString>
+#endif
+
 // To store the view port proeperties that affect zoom set through meta data. 
 // This is available in the main frame of the page but to avoid parsing the meta
 // data again, store it
@@ -39,6 +44,14 @@
    qreal minScale;
    qreal maxScale;
    bool userScalable;
-
+#ifdef BEDROCK_TILED_BACKING_STORE
+   qreal initialScale;
+   QRectF rect;
+   QRectF webViewSize;
+   qreal scale;
+   QSizeF viewportSize;
+   QString m_specifiedWidth;
+   QString m_specifiedHeight;
+#endif
 };
 #endif  //__ZOOMMETADATA_H__