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

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

Issue 2655463006: PlzNavigate: Enforce 'frame-src' CSP on the browser. (Closed)
Patch Set: Addressed comments(alexmos@ and nasko@) Created 3 years, 10 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_IMPL_H_
7
8 #include "content/common/content_security_policy/csp_context.h"
9
10 namespace content {
11
12 class FrameTreeNode;
13
14 class CSPContextImpl : public CSPContext {
15 public:
16 CSPContextImpl(FrameTreeNode* frame_tree_node);
17 void LogToConsole(const std::string& message) override;
18
19 // Inform the renderer process that a navigation has been blocked by a content
20 // security policy.
21 void ReportViolation(const CSPViolationParams& violation_params) override;
22
23 private:
24 bool SchemeShouldBypassCSP(const base::StringPiece& scheme) override;
25
26 // Never nullptr;
27 FrameTreeNode* frame_tree_node_;
28 };
29
30 } // namespace content
31
32 #endif // CONTENT_BROWSER_FRAME_HOST_CSP_CONTEXT_IMPL_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698