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

Unified Diff: content/common/frame_messages.h

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/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index 0014c8a958705cfd2fb0ecf09b004a6cf47c7459..0255e12ed141627f1ea4311390752dd7d0623546 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -849,6 +849,14 @@ IPC_MESSAGE_ROUTED2(FrameHostMsg_RenderProcessGone,
// Sent by the renderer when the frame becomes focused.
IPC_MESSAGE_ROUTED0(FrameHostMsg_FrameFocused)
+// Sent by the renderer when the frame tries to display mixed content
+// within another frame.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_TriedDisplayingInsecureContent, GURL, GURL)
alexmos 2016/01/09 01:39:02 nit: document what each parameter is.
+
+// Sent by the renderer when the frame tries to run mixed content within
+// another frame.
+IPC_MESSAGE_ROUTED2(FrameHostMsg_TriedRunningInsecureContent, GURL, GURL)
+
// Sent when the renderer starts a provisional load for a frame.
IPC_MESSAGE_ROUTED2(FrameHostMsg_DidStartProvisionalLoad,
GURL /* url */,

Powered by Google App Engine
This is Rietveld 408576698