Index: Source/core/html/HTMLFrameOwnerElement.h |
diff --git a/Source/core/html/HTMLFrameOwnerElement.h b/Source/core/html/HTMLFrameOwnerElement.h |
index 87ad3856ec50b56c797c85a6dd4ef71339d38373..c09e588ff67d0d4f79f4f980fd0eb612d7084940 100644 |
--- a/Source/core/html/HTMLFrameOwnerElement.h |
+++ b/Source/core/html/HTMLFrameOwnerElement.h |
@@ -94,6 +94,9 @@ private: |
bool isKeyboardFocusable() const override; |
bool isFrameOwnerElement() const final { return true; } |
+ // Returns true if the element has a referrerpolicy attribute. If true, sets |policy| to the policy specified by the attribute value. |
+ virtual bool referrerPolicyAttribute(ReferrerPolicy* policy) { return false; } |
+ |
RawPtrWillBeMember<Frame> m_contentFrame; |
RefPtrWillBeMember<Widget> m_widget; |
SandboxFlags m_sandboxFlags; |