Chromium Code Reviews| Index: Source/core/frame/RemoteFrame.h |
| diff --git a/Source/core/frame/RemoteFrame.h b/Source/core/frame/RemoteFrame.h |
| index 1f8ec6dd88bdcb89ae63dd9da940341a6f95e748..b0ac725c632eb4a54571642d4d2718838808e65d 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 { |
| @@ -30,7 +31,10 @@ public: |
| // process. See http://crbug.com/339659. |
| void forwardInputEvent(Event*); |
| + virtual RemoteSecurityContext* securityContext() const override; |
|
dcheng
2014/11/12 21:55:50
Nit: move this to the Frame overrides: section.
alexmos
2014/11/18 18:35:17
Done.
|
| + |
| void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>); |
| + |
| void createView(); |
| RemoteFrameView* view() const; |
| @@ -42,6 +46,7 @@ private: |
| RemoteFrameClient* remoteFrameClient() const; |
| RefPtrWillBeMember<RemoteFrameView> m_view; |
| + RefPtr<RemoteSecurityContext> m_securityContext; |
| }; |
| inline RemoteFrameView* RemoteFrame::view() const |