| 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());
|
|
|