blob: c8fb37f1359f5af9c94e6f225a4d6bc09af9ba34 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_CONTENT_SECURITY_POLICY_UTIL_H_
#define CONTENT_RENDERER_CONTENT_SECURITY_POLICY_UTIL_H_
#include "content/common/content_security_policy/content_security_policy.h"
#include "content/common/content_security_policy/csp_context.h"
#include "services/network/public/mojom/content_security_policy.mojom-forward.h"
#include "third_party/blink/public/platform/web_content_security_policy_struct.h"
namespace content {
// Convert a WebContentSecurityPolicy into a ContentSecurityPolicy. These two
// classes represent the exact same thing, but one is in content, the other is
// in blink.
network::mojom::ContentSecurityPolicyPtr BuildContentSecurityPolicy(
const blink::WebContentSecurityPolicy&);
// Convert a WebContentSecurityPolicyList into a list of ContentSecurityPolicy.
std::vector<network::mojom::ContentSecurityPolicyPtr>
BuildContentSecurityPolicyList(const blink::WebContentSecurityPolicyList&);
network::mojom::CSPSourcePtr BuildCSPSource(
const blink::WebContentSecurityPolicySourceExpression&);
// Convert a CSPViolationParams into a WebContentSecurityPolicyViolation. These
// two classes represent the exact same thing, but one is in content, the other
// is in blink.
blink::WebContentSecurityPolicyViolation BuildWebContentSecurityPolicyViolation(
const content::CSPViolationParams& violation_params);
} // namespace content
#endif /* CONTENT_RENDERER_CONTENT_SECURITY_POLICY_UTIL_H_ */