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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 1550233002: Move mixed content settings histograms into browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fix Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index 2de28798f3834d0ab1610723fd30f00007ce1bfa..7fbb6a4a8e79bb05062a3ddb7d0e4c432034f2f0 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -2604,6 +2604,20 @@ void RenderFrameImpl::frameFocused() {
Send(new FrameHostMsg_FrameFocused(routing_id_));
}
+void RenderFrameImpl::triedDisplayingInsecureContent(
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) {
+ Send(new FrameHostMsg_TriedDisplayingInsecureContent(
+ routing_id_, GURL(origin.toString().utf8()), url));
alexmos 2016/01/09 01:39:02 If we do end up passing origin through this, it's
+}
+
+void RenderFrameImpl::triedRunningInsecureContent(
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) {
+ Send(new FrameHostMsg_TriedRunningInsecureContent(
+ routing_id_, GURL(origin.toString().utf8()), url));
+}
+
void RenderFrameImpl::willClose(blink::WebFrame* frame) {
DCHECK(!frame_ || frame_ == frame);

Powered by Google App Engine
This is Rietveld 408576698