summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLFrameOwnerElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLFrameOwnerElement.h')
-rw-r--r--WebCore/html/HTMLFrameOwnerElement.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/html/HTMLFrameOwnerElement.h b/WebCore/html/HTMLFrameOwnerElement.h
index 1437e2c..308a100 100644
--- a/WebCore/html/HTMLFrameOwnerElement.h
+++ b/WebCore/html/HTMLFrameOwnerElement.h
@@ -21,6 +21,7 @@
#ifndef HTMLFrameOwnerElement_h
#define HTMLFrameOwnerElement_h
+#include "FrameLoaderTypes.h"
#include "HTMLElement.h"
namespace WebCore {
@@ -46,9 +47,13 @@ public:
virtual ScrollbarMode scrollingMode() const { return ScrollbarAuto; }
+ SandboxFlags sandboxFlags() const { return m_sandboxFlags; }
+
protected:
HTMLFrameOwnerElement(const QualifiedName& tagName, Document*);
+ void setSandboxFlags(SandboxFlags);
+
private:
friend class Frame;
@@ -58,6 +63,7 @@ private:
virtual void willRemove();
Frame* m_contentFrame;
+ SandboxFlags m_sandboxFlags;
};
} // namespace WebCore