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

Unified Diff: content/renderer/render_frame_proxy.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_proxy.cc
diff --git a/content/renderer/render_frame_proxy.cc b/content/renderer/render_frame_proxy.cc
index e67a0523e688c8ced4ac3ba2a03123c2c108f04f..bc3fb95ea9dc09da40d38ef6c918369e3d059ffb 100644
--- a/content/renderer/render_frame_proxy.cc
+++ b/content/renderer/render_frame_proxy.cc
@@ -475,4 +475,18 @@ void RenderFrameProxy::frameFocused() {
Send(new FrameHostMsg_FrameFocused(routing_id_));
}
+void RenderFrameProxy::triedDisplayingInsecureContent(
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) {
+ Send(new FrameHostMsg_TriedDisplayingInsecureContent(
+ routing_id_, GURL(origin.toString().utf8()), url));
+}
+
+void RenderFrameProxy::triedRunningInsecureContent(
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) {
+ Send(new FrameHostMsg_TriedRunningInsecureContent(
+ routing_id_, GURL(origin.toString().utf8()), url));
+}
+
} // namespace

Powered by Google App Engine
This is Rietveld 408576698