Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: content/browser/frame_host/frame_tree_node.h

Issue 2764993002: CSP: group policies in didAddContentSecurityPolicy. (Closed)
Patch Set: Nit. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 // Set the current name and notify proxies about the update. 161 // Set the current name and notify proxies about the update.
162 void SetFrameName(const std::string& name, const std::string& unique_name); 162 void SetFrameName(const std::string& name, const std::string& unique_name);
163 163
164 // Set the frame's feature policy header, clearing any existing header. 164 // Set the frame's feature policy header, clearing any existing header.
165 void SetFeaturePolicyHeader(const ParsedFeaturePolicyHeader& parsed_header); 165 void SetFeaturePolicyHeader(const ParsedFeaturePolicyHeader& parsed_header);
166 166
167 // Clear any feature policy header associated with the frame. 167 // Clear any feature policy header associated with the frame.
168 void ResetFeaturePolicyHeader(); 168 void ResetFeaturePolicyHeader();
169 169
170 // Add CSP header to replication state, notify proxies about the update and 170 // Add CSP headers to replication state, notify proxies about the update.
171 // enforce it on the browser. 171 void AddContentSecurityPolicies(
172 void AddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); 172 const std::vector<ContentSecurityPolicyHeader>& headers);
173 173
174 // Discards previous CSP headers and notifies proxies about the update. 174 // Discards previous CSP headers and notifies proxies about the update.
175 // Typically invoked after committing navigation to a new document (since the 175 // Typically invoked after committing navigation to a new document (since the
176 // new document comes with a fresh set of CSP http headers). 176 // new document comes with a fresh set of CSP http headers).
177 void ResetCspHeaders(); 177 void ResetCspHeaders();
178 178
179 // Sets the current insecure request policy, and notifies proxies about the 179 // Sets the current insecure request policy, and notifies proxies about the
180 // update. 180 // update.
181 void SetInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); 181 void SetInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy);
182 182
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 // browser process activities to this node (when possible). It is unrelated 403 // browser process activities to this node (when possible). It is unrelated
404 // to the core logic of FrameTreeNode. 404 // to the core logic of FrameTreeNode.
405 FrameTreeNodeBlameContext blame_context_; 405 FrameTreeNodeBlameContext blame_context_;
406 406
407 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); 407 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode);
408 }; 408 };
409 409
410 } // namespace content 410 } // namespace content
411 411
412 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ 412 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/frame_tree_node.cc » ('j') | content/browser/frame_host/render_frame_host_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698