| 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 CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 5 #ifndef CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| 6 #define CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 6 #define CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "content/common/content_security_policy_header.h" | 12 #include "content/common/content_security_policy_header.h" |
| 13 #include "content/common/feature_policy/feature_policy.h" |
| 13 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" | 14 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| 14 #include "url/origin.h" | 15 #include "url/origin.h" |
| 15 | 16 |
| 16 namespace blink { | 17 namespace blink { |
| 17 enum class WebTreeScopeType; | 18 enum class WebTreeScopeType; |
| 18 enum class WebSandboxFlags; | 19 enum class WebSandboxFlags; |
| 19 } | 20 } |
| 20 | 21 |
| 21 namespace content { | 22 namespace content { |
| 22 | 23 |
| 23 // This struct holds feature policy whitelist data that needs to be replicated | |
| 24 // between a RenderFrame and any of its associated RenderFrameProxies. A list of | |
| 25 // these form part of the FrameReplicationState below (one entry per feature). | |
| 26 struct CONTENT_EXPORT ParsedFeaturePolicyDeclaration { | |
| 27 ParsedFeaturePolicyDeclaration(); | |
| 28 ParsedFeaturePolicyDeclaration(const ParsedFeaturePolicyDeclaration& fppw); | |
| 29 ~ParsedFeaturePolicyDeclaration(); | |
| 30 | |
| 31 std::string feature_name; | |
| 32 bool matches_all_origins; | |
| 33 std::vector<url::Origin> origins; | |
| 34 }; | |
| 35 | |
| 36 using ParsedFeaturePolicyHeader = std::vector<ParsedFeaturePolicyDeclaration>; | |
| 37 | |
| 38 // This structure holds information that needs to be replicated between a | 24 // This structure holds information that needs to be replicated between a |
| 39 // RenderFrame and any of its associated RenderFrameProxies. | 25 // RenderFrame and any of its associated RenderFrameProxies. |
| 40 struct CONTENT_EXPORT FrameReplicationState { | 26 struct CONTENT_EXPORT FrameReplicationState { |
| 41 FrameReplicationState(); | 27 FrameReplicationState(); |
| 42 FrameReplicationState(blink::WebTreeScopeType scope, | 28 FrameReplicationState(blink::WebTreeScopeType scope, |
| 43 const std::string& name, | 29 const std::string& name, |
| 44 const std::string& unique_name, | 30 const std::string& unique_name, |
| 45 blink::WebSandboxFlags sandbox_flags, | 31 blink::WebSandboxFlags sandbox_flags, |
| 46 blink::WebInsecureRequestPolicy insecure_request_policy, | 32 blink::WebInsecureRequestPolicy insecure_request_policy, |
| 47 bool has_potentially_trustworthy_unique_origin, | 33 bool has_potentially_trustworthy_unique_origin, |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // trustworthy. | 111 // trustworthy. |
| 126 bool has_potentially_trustworthy_unique_origin; | 112 bool has_potentially_trustworthy_unique_origin; |
| 127 | 113 |
| 128 // Whether the frame has ever received a user gesture anywhere. | 114 // Whether the frame has ever received a user gesture anywhere. |
| 129 bool has_received_user_gesture; | 115 bool has_received_user_gesture; |
| 130 }; | 116 }; |
| 131 | 117 |
| 132 } // namespace content | 118 } // namespace content |
| 133 | 119 |
| 134 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 120 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| OLD | NEW |