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 "platform/wtf/Compiler.h" |
10 #include "public/platform/WebInsecureRequestPolicy.h" | 11 #include "public/platform/WebInsecureRequestPolicy.h" |
11 #include "public/web/WebRemoteFrame.h" | 12 #include "public/web/WebRemoteFrame.h" |
12 #include "public/web/WebRemoteFrameClient.h" | 13 #include "public/web/WebRemoteFrameClient.h" |
13 #include "web/RemoteFrameClientImpl.h" | 14 #include "web/RemoteFrameClientImpl.h" |
14 #include "web/WebExport.h" | 15 #include "web/WebExport.h" |
15 #include "web/WebFrameImplBase.h" | 16 #include "web/WebFrameImplBase.h" |
16 #include "wtf/Compiler.h" | |
17 | 17 |
18 namespace blink { | 18 namespace blink { |
19 | 19 |
20 class FrameOwner; | 20 class FrameOwner; |
21 class RemoteFrame; | 21 class RemoteFrame; |
22 enum class WebFrameLoadType; | 22 enum class WebFrameLoadType; |
23 class WebAssociatedURLLoader; | 23 class WebAssociatedURLLoader; |
24 struct WebAssociatedURLLoaderOptions; | 24 struct WebAssociatedURLLoaderOptions; |
25 | 25 |
26 class WEB_EXPORT WebRemoteFrameImpl final | 26 class WEB_EXPORT WebRemoteFrameImpl final |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 | 179 |
180 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, | 180 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, |
181 WebFrame, | 181 WebFrame, |
182 frame, | 182 frame, |
183 frame->isWebRemoteFrame(), | 183 frame->isWebRemoteFrame(), |
184 frame.isWebRemoteFrame()); | 184 frame.isWebRemoteFrame()); |
185 | 185 |
186 } // namespace blink | 186 } // namespace blink |
187 | 187 |
188 #endif // WebRemoteFrameImpl_h | 188 #endif // WebRemoteFrameImpl_h |
OLD | NEW |