Index: Source/core/frame/RemoteFrame.h |
diff --git a/Source/core/frame/RemoteFrame.h b/Source/core/frame/RemoteFrame.h |
index 1f8ec6dd88bdcb89ae63dd9da940341a6f95e748..0b9c7babea232944d637d2bcd4868b7a2e5006d6 100644 |
--- a/Source/core/frame/RemoteFrame.h |
+++ b/Source/core/frame/RemoteFrame.h |
@@ -5,6 +5,7 @@ |
#ifndef RemoteFrame_h |
#define RemoteFrame_h |
+#include "core/dom/RemoteSecurityContext.h" |
#include "core/frame/Frame.h" |
namespace blink { |
@@ -25,6 +26,7 @@ public: |
virtual DOMWindow* domWindow() const override { return 0; } |
virtual void navigate(Document& originDocument, const KURL&, bool lockBackForwardList) override; |
virtual void detach() override; |
+ virtual RemoteSecurityContext* securityContext() const override; |
// FIXME: Remove this method once we have input routing in the browser |
// process. See http://crbug.com/339659. |
@@ -42,6 +44,7 @@ private: |
RemoteFrameClient* remoteFrameClient() const; |
RefPtrWillBeMember<RemoteFrameView> m_view; |
+ RefPtr<RemoteSecurityContext> m_securityContext; |
}; |
inline RemoteFrameView* RemoteFrame::view() const |