blob: 938174ec62573b5545f20706861d53b5252a6142 [file]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/loader/content_security_notifier.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
namespace content {
ContentSecurityNotifier::ContentSecurityNotifier(
GlobalRenderFrameHostId render_frame_host_id)
: render_frame_host_id_(render_frame_host_id) {}
void ContentSecurityNotifier::NotifyContentWithCertificateErrorsRan() {
auto* render_frame_host = RenderFrameHostImpl::FromID(render_frame_host_id_);
if (render_frame_host) {
render_frame_host->OnDidRunContentWithCertificateErrors();
}
}
void ContentSecurityNotifier::NotifyContentWithCertificateErrorsDisplayed() {
auto* render_frame_host = RenderFrameHostImpl::FromID(render_frame_host_id_);
if (render_frame_host) {
render_frame_host->OnDidDisplayContentWithCertificateErrors();
}
}
void ContentSecurityNotifier::NotifyInsecureContentRan(
const GURL& insecure_url,
blink::mojom::ContentSecurityNotifier::InsecureContentOrigin origin_type) {
auto* render_frame_host = RenderFrameHostImpl::FromID(render_frame_host_id_);
if (render_frame_host) {
render_frame_host->OnDidRunInsecureContent(insecure_url, origin_type);
}
}
} // namespace content