| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 #include "content/common/content_security_policy/csp_context.h" | 5 #include "content/common/content_security_policy/csp_context.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 CSPContext::CSPContext() : has_self_(false) {} | 9 CSPContext::CSPContext() : has_self_(false) {} |
| 10 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 bool CSPContext::SchemeShouldBypassCSP(const base::StringPiece& scheme) { | 67 bool CSPContext::SchemeShouldBypassCSP(const base::StringPiece& scheme) { |
| 68 return false; | 68 return false; |
| 69 } | 69 } |
| 70 | 70 |
| 71 bool CSPContext::SelfSchemeShouldBypassCSP() { | 71 bool CSPContext::SelfSchemeShouldBypassCSP() { |
| 72 if (!has_self_) | 72 if (!has_self_) |
| 73 return false; | 73 return false; |
| 74 return SchemeShouldBypassCSP(self_scheme_); | 74 return SchemeShouldBypassCSP(self_scheme_); |
| 75 } | 75 } |
| 76 | 76 |
| 77 void CSPContext::ReportViolation( | 77 void CSPContext::ReportViolation(const CSPViolationParams& violation_params) { |
| 78 const std::string& directive_text, | |
| 79 const std::string& effective_directive, | |
| 80 const std::string& message, | |
| 81 const GURL& blocked_url, | |
| 82 const std::vector<std::string>& report_end_points, | |
| 83 const std::string& header, | |
| 84 blink::WebContentSecurityPolicyType disposition) { | |
| 85 return; | 78 return; |
| 86 } | 79 } |
| 87 | 80 |
| 81 CSPViolationParams::CSPViolationParams() = default; |
| 82 |
| 83 CSPViolationParams::CSPViolationParams( |
| 84 const std::string& directive, |
| 85 const std::string& effective_directive, |
| 86 const std::string& console_message, |
| 87 const GURL& blocked_url, |
| 88 const std::vector<std::string>& report_endpoints, |
| 89 const std::string& header, |
| 90 const blink::WebContentSecurityPolicyType& disposition, |
| 91 bool after_redirect) |
| 92 : directive(directive), |
| 93 effective_directive(effective_directive), |
| 94 console_message(console_message), |
| 95 blocked_url(blocked_url), |
| 96 report_endpoints(report_endpoints), |
| 97 header(header), |
| 98 disposition(disposition), |
| 99 after_redirect(after_redirect) {} |
| 100 |
| 101 CSPViolationParams::CSPViolationParams(const CSPViolationParams& other) = |
| 102 default; |
| 103 |
| 104 CSPViolationParams::~CSPViolationParams() {} |
| 105 |
| 88 } // namespace content | 106 } // namespace content |
| OLD | NEW |