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

Unified Diff: content/common/frame_messages.h

Issue 1489253002: Plumb document's strict mixed content checking for RemoteFrames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 a2766fd2f8b50d5f0cd0b10c3260f7348a53feaf..96b8bd696f76e8832f650c816cd3c70cb1a5ee80 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -651,6 +651,12 @@ IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateSandboxFlags, blink::WebSandboxFlags)
// changed in another process.
IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateName, std::string /* name */)
+// Update a proxy's replicated enforcement of strict mixed content
+// checking. Used when the frame's mixed content setting is changed in
+// another process.
+IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateShouldEnforceStrictMixedContentChecking,
+ bool /* should enforce */)
+
// Update a proxy's replicated origin. Used when the frame is navigated to a
// new origin.
IPC_MESSAGE_ROUTED1(FrameMsg_DidUpdateOrigin, url::Origin /* origin */)
@@ -800,6 +806,11 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateState, content::PageState /* state */)
// Sent when the frame changes its window.name.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeName, std::string /* name */)
+// Sent when the frame changes its enforcement of strict mixed content checking.
+IPC_MESSAGE_ROUTED1(
+ FrameHostMsg_DidChangeShouldEnforceStrictMixedContentChecking,
alexmos 2015/12/03 20:43:26 Can this flag change dynamically while the Documen
estark 2015/12/04 00:19:31 It can change dynamically. (For example, if a <met
alexmos 2015/12/04 23:41:11 Acknowledged.
+ bool /* should enforce */)
+
// Sent when the renderer changed the progress of a load.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress,
double /* load_progress */)

Powered by Google App Engine
This is Rietveld 408576698