Chromium Code Reviews| 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 */, |