blob: 2ca98ba2368b1ecea047d541860f8cf041904c7d [file] [log] [blame]
// Copyright 2020 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.
#include "content/browser/loader/content_security_notifier.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
namespace content {
ContentSecurityNotifier::ContentSecurityNotifier(
GlobalFrameRoutingId 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& origin,
const GURL& insecure_url) {
auto* render_frame_host = RenderFrameHostImpl::FromID(render_frame_host_id_);
if (render_frame_host)
render_frame_host->OnDidRunInsecureContent(origin, insecure_url);
}
} // namespace content