| 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 WebRemoteFrame_h | 5 #ifndef WebRemoteFrame_h |
| 6 #define WebRemoteFrame_h | 6 #define WebRemoteFrame_h |
| 7 | 7 |
| 8 #include "public/platform/WebContentSecurityPolicy.h" |
| 8 #include "public/platform/WebFeaturePolicy.h" | 9 #include "public/platform/WebFeaturePolicy.h" |
| 9 #include "public/platform/WebInsecureRequestPolicy.h" | 10 #include "public/platform/WebInsecureRequestPolicy.h" |
| 10 #include "public/web/WebContentSecurityPolicy.h" | |
| 11 #include "public/web/WebFrame.h" | 11 #include "public/web/WebFrame.h" |
| 12 #include "public/web/WebSandboxFlags.h" | 12 #include "public/web/WebSandboxFlags.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 enum class WebTreeScopeType; | 16 enum class WebTreeScopeType; |
| 17 class InterfaceProvider; | 17 class InterfaceProvider; |
| 18 class InterfaceRegistry; | 18 class InterfaceRegistry; |
| 19 class WebFrameClient; | 19 class WebFrameClient; |
| 20 class WebLayer; | 20 class WebLayer; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 // to call these on a WebRemoteFrame. | 113 // to call these on a WebRemoteFrame. |
| 114 bool isWebLocalFrame() const override = 0; | 114 bool isWebLocalFrame() const override = 0; |
| 115 WebLocalFrame* toWebLocalFrame() override = 0; | 115 WebLocalFrame* toWebLocalFrame() override = 0; |
| 116 bool isWebRemoteFrame() const override = 0; | 116 bool isWebRemoteFrame() const override = 0; |
| 117 WebRemoteFrame* toWebRemoteFrame() override = 0; | 117 WebRemoteFrame* toWebRemoteFrame() override = 0; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace blink | 120 } // namespace blink |
| 121 | 121 |
| 122 #endif // WebRemoteFrame_h | 122 #endif // WebRemoteFrame_h |
| OLD | NEW |