| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 // Set the current origin and notify proxies about the update. | 149 // Set the current origin and notify proxies about the update. |
| 150 void SetCurrentOrigin(const url::Origin& origin, | 150 void SetCurrentOrigin(const url::Origin& origin, |
| 151 bool is_potentially_trustworthy_unique_origin); | 151 bool is_potentially_trustworthy_unique_origin); |
| 152 | 152 |
| 153 // Set the current name and notify proxies about the update. | 153 // Set the current name and notify proxies about the update. |
| 154 void SetFrameName(const std::string& name, const std::string& unique_name); | 154 void SetFrameName(const std::string& name, const std::string& unique_name); |
| 155 | 155 |
| 156 // Set the frame's feature policy from an HTTP header, clearing any existing | 156 // Set the frame's feature policy from an HTTP header, clearing any existing |
| 157 // policy. | 157 // policy. |
| 158 void SetFeaturePolicyHeader(const ParsedFeaturePolicy& parsed_header); | 158 void SetFeaturePolicyHeader(const ParsedFeaturePolicyHeader& parsed_header); |
| 159 | 159 |
| 160 // Clear any feature policy associated with the frame. | 160 // Clear any feature policy associated with the frame. |
| 161 void ResetFeaturePolicy(); | 161 void ResetFeaturePolicy(); |
| 162 | 162 |
| 163 // Add CSP header to replication state and notify proxies about the update. | 163 // Add CSP header to replication state and notify proxies about the update. |
| 164 void AddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); | 164 void AddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| 165 | 165 |
| 166 // Discards previous CSP headers and notifies proxies about the update. | 166 // Discards previous CSP headers and notifies proxies about the update. |
| 167 // Typically invoked after committing navigation to a new document (since the | 167 // Typically invoked after committing navigation to a new document (since the |
| 168 // new document comes with a fresh set of CSP http headers). | 168 // new document comes with a fresh set of CSP http headers). |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 // browser process activities to this node (when possible). It is unrelated | 384 // browser process activities to this node (when possible). It is unrelated |
| 385 // to the core logic of FrameTreeNode. | 385 // to the core logic of FrameTreeNode. |
| 386 FrameTreeNodeBlameContext blame_context_; | 386 FrameTreeNodeBlameContext blame_context_; |
| 387 | 387 |
| 388 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); | 388 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); |
| 389 }; | 389 }; |
| 390 | 390 |
| 391 } // namespace content | 391 } // namespace content |
| 392 | 392 |
| 393 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 393 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| OLD | NEW |