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

Unified Diff: content/common/frame_replication_state.cc

Issue 1489253002: Plumb document's strict mixed content checking for RemoteFrames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nasko comments 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
« no previous file with comments | « content/common/frame_replication_state.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/frame_replication_state.cc
diff --git a/content/common/frame_replication_state.cc b/content/common/frame_replication_state.cc
index 0019cdc41e9b579ced81758aadc7155112057113..0046466d7f1a92b27f701b7de0403ce6599b8830 100644
--- a/content/common/frame_replication_state.cc
+++ b/content/common/frame_replication_state.cc
@@ -10,15 +10,20 @@ namespace content {
FrameReplicationState::FrameReplicationState()
: sandbox_flags(blink::WebSandboxFlags::None),
- scope(blink::WebTreeScopeType::Document) {
-}
+ scope(blink::WebTreeScopeType::Document),
+ should_enforce_strict_mixed_content_checking(false) {}
FrameReplicationState::FrameReplicationState(
blink::WebTreeScopeType scope,
const std::string& name,
- blink::WebSandboxFlags sandbox_flags)
- : origin(), sandbox_flags(sandbox_flags), name(name), scope(scope) {
-}
+ blink::WebSandboxFlags sandbox_flags,
+ bool should_enforce_strict_mixed_content_checking)
+ : origin(),
+ sandbox_flags(sandbox_flags),
+ name(name),
+ scope(scope),
+ should_enforce_strict_mixed_content_checking(
+ should_enforce_strict_mixed_content_checking) {}
FrameReplicationState::~FrameReplicationState() {
}
« no previous file with comments | « content/common/frame_replication_state.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698