| 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 FeaturePolicyParsedWhitelist { | |
| 27 FeaturePolicyParsedWhitelist(); | |
| 28 FeaturePolicyParsedWhitelist(const FeaturePolicyParsedWhitelist& fppw); | |
| 29 ~FeaturePolicyParsedWhitelist(); | |
| 30 | |
| 31 std::string feature_name; | |
| 32 bool matches_all_origins; | |
| 33 std::vector<url::Origin> origins; | |
| 34 }; | |
| 35 | |
| 36 using ParsedFeaturePolicy = std::vector<FeaturePolicyParsedWhitelist>; | |
| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 // in layout tests results). | 80 // in layout tests results). |
| 95 // | 81 // |
| 96 // |unique_name| needs to be replicated to ensure that unique name for a given | 82 // |unique_name| needs to be replicated to ensure that unique name for a given |
| 97 // frame is the same across all renderers - without replication a renderer | 83 // frame is the same across all renderers - without replication a renderer |
| 98 // might arrive at a different value when recalculating the unique name from | 84 // might arrive at a different value when recalculating the unique name from |
| 99 // scratch. | 85 // scratch. |
| 100 std::string unique_name; | 86 std::string unique_name; |
| 101 | 87 |
| 102 // Parsed feature policy header. May be empty if no header was sent with the | 88 // Parsed feature policy header. May be empty if no header was sent with the |
| 103 // document. | 89 // document. |
| 104 ParsedFeaturePolicy feature_policy_header; | 90 FeaturePolicyHeader feature_policy_header; |
| 105 | 91 |
| 106 // Accumulated CSP headers - gathered from http headers, <meta> elements, | 92 // Accumulated CSP headers - gathered from http headers, <meta> elements, |
| 107 // parent frames (in case of about:blank frames). | 93 // parent frames (in case of about:blank frames). |
| 108 std::vector<ContentSecurityPolicyHeader> accumulated_csp_headers; | 94 std::vector<ContentSecurityPolicyHeader> accumulated_csp_headers; |
| 109 | 95 |
| 110 // Whether the frame is in a document tree or a shadow tree, per the Shadow | 96 // Whether the frame is in a document tree or a shadow tree, per the Shadow |
| 111 // DOM spec: https://w3c.github.io/webcomponents/spec/shadow/ | 97 // DOM spec: https://w3c.github.io/webcomponents/spec/shadow/ |
| 112 // Note: This should really be const, as it can never change once a frame is | 98 // Note: This should really be const, as it can never change once a frame is |
| 113 // created. However, making it const makes it a pain to embed into IPC message | 99 // created. However, making it const makes it a pain to embed into IPC message |
| 114 // params: having a const member implicitly deletes the copy assignment | 100 // params: having a const member implicitly deletes the copy assignment |
| 115 // operator. | 101 // operator. |
| 116 blink::WebTreeScopeType scope; | 102 blink::WebTreeScopeType scope; |
| 117 | 103 |
| 118 // The insecure request policy that a frame's current document is enforcing. | 104 // The insecure request policy that a frame's current document is enforcing. |
| 119 // Updates are immediately sent to all frame proxies when frames live in | 105 // Updates are immediately sent to all frame proxies when frames live in |
| 120 // different processes. | 106 // different processes. |
| 121 blink::WebInsecureRequestPolicy insecure_request_policy; | 107 blink::WebInsecureRequestPolicy insecure_request_policy; |
| 122 | 108 |
| 123 // True if a frame's origin is unique and should be considered potentially | 109 // True if a frame's origin is unique and should be considered potentially |
| 124 // trustworthy. | 110 // trustworthy. |
| 125 bool has_potentially_trustworthy_unique_origin; | 111 bool has_potentially_trustworthy_unique_origin; |
| 126 }; | 112 }; |
| 127 | 113 |
| 128 } // namespace content | 114 } // namespace content |
| 129 | 115 |
| 130 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 116 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| OLD | NEW |