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

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 2557063002: Upgrade Insecure Requests: bugfixes, tests, and support for OOPIF.
Patch Set: Addressed comments (@nasko #2). Created 4 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 | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/public/web/WebFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index 7cff1d54dd6f473c7644a9cd2d31287ad251c98c..5dfaf934a289347ea3e10595712bb02842a5029b 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -464,6 +464,12 @@ void WebRemoteFrameImpl::setReplicatedInsecureRequestPolicy(
frame()->securityContext()->setInsecureRequestPolicy(policy);
}
+void WebRemoteFrameImpl::setReplicatedInsecureNavigationsSet(
+ const std::vector<unsigned>& set) const {
+ DCHECK(frame());
+ frame()->securityContext()->setInsecureNavigationsSet(set);
+}
+
void WebRemoteFrameImpl::setReplicatedPotentiallyTrustworthyUniqueOrigin(
bool isUniqueOriginPotentiallyTrustworthy) const {
DCHECK(frame());
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/public/web/WebFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698