| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebRemoteFrameImpl_h | 5 #ifndef WebRemoteFrameImpl_h |
| 6 #define WebRemoteFrameImpl_h | 6 #define WebRemoteFrameImpl_h |
| 7 | 7 |
| 8 #include "core/frame/RemoteFrame.h" | 8 #include "core/frame/RemoteFrame.h" |
| 9 #include "platform/heap/SelfKeepAlive.h" | 9 #include "platform/heap/SelfKeepAlive.h" |
| 10 #include "public/platform/WebInsecureRequestPolicy.h" | 10 #include "public/platform/WebInsecureRequestPolicy.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 WebRemoteFrameClient* client() const { return m_client; } | 123 WebRemoteFrameClient* client() const { return m_client; } |
| 124 | 124 |
| 125 static WebRemoteFrameImpl* fromFrame(RemoteFrame&); | 125 static WebRemoteFrameImpl* fromFrame(RemoteFrame&); |
| 126 | 126 |
| 127 // WebRemoteFrame methods: | 127 // WebRemoteFrame methods: |
| 128 WebLocalFrame* createLocalChild(WebTreeScopeType, | 128 WebLocalFrame* createLocalChild(WebTreeScopeType, |
| 129 const WebString& name, | 129 const WebString& name, |
| 130 const WebString& uniqueName, | 130 const WebString& uniqueName, |
| 131 WebSandboxFlags, | 131 WebSandboxFlags, |
| 132 WebFrameClient*, | 132 WebFrameClient*, |
| 133 blink::InterfaceProvider*, |
| 134 blink::InterfaceRegistry*, |
| 133 WebFrame* previousSibling, | 135 WebFrame* previousSibling, |
| 134 const WebFrameOwnerProperties&, | 136 const WebFrameOwnerProperties&, |
| 135 WebFrame* opener) override; | 137 WebFrame* opener) override; |
| 136 WebRemoteFrame* createRemoteChild(WebTreeScopeType, | 138 WebRemoteFrame* createRemoteChild(WebTreeScopeType, |
| 137 const WebString& name, | 139 const WebString& name, |
| 138 const WebString& uniqueName, | 140 const WebString& uniqueName, |
| 139 WebSandboxFlags, | 141 WebSandboxFlags, |
| 140 WebRemoteFrameClient*, | 142 WebRemoteFrameClient*, |
| 141 WebFrame* opener) override; | 143 WebFrame* opener) override; |
| 142 void setWebLayer(WebLayer*) override; | 144 void setWebLayer(WebLayer*) override; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 191 |
| 190 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, | 192 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, |
| 191 WebFrame, | 193 WebFrame, |
| 192 frame, | 194 frame, |
| 193 frame->isWebRemoteFrame(), | 195 frame->isWebRemoteFrame(), |
| 194 frame.isWebRemoteFrame()); | 196 frame.isWebRemoteFrame()); |
| 195 | 197 |
| 196 } // namespace blink | 198 } // namespace blink |
| 197 | 199 |
| 198 #endif // WebRemoteFrameImpl_h | 200 #endif // WebRemoteFrameImpl_h |
| OLD | NEW |