| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 29ba52b55ea0d02da77725f16084e735de41dcb3..4302dd8290eab5b77d960c884efcb81cb561945b 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -6410,6 +6410,17 @@ void Document::enforceInsecureRequestPolicy(WebInsecureRequestPolicy policy) {
|
| getInsecureRequestPolicy());
|
| }
|
|
|
| +void Document::enforceInsecureNavigationsSet(
|
| + const InsecureNavigationsSet& set) {
|
| + for (unsigned hash : set)
|
| + addInsecureNavigationUpgrade(hash);
|
| + if (frame()) {
|
| + frame()->loader().client()->didEnforceInsecureNavigationsSet(
|
| + SecurityContext::serializeInsecureNavigationSet(
|
| + *insecureNavigationsToUpgrade()));
|
| + }
|
| +}
|
| +
|
| void Document::setShadowCascadeOrder(ShadowCascadeOrder order) {
|
| DCHECK_NE(order, ShadowCascadeOrder::ShadowCascadeNone);
|
|
|
|
|