| Index: third_party/WebKit/Source/web/WebFrame.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
|
| index c71218a4de653abefbe2a440e929a7b740810225..bafa75b714975aeff744cda669048fe9a2cb5b80 100644
|
| --- a/third_party/WebKit/Source/web/WebFrame.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrame.cpp
|
| @@ -133,6 +133,13 @@ WebInsecureRequestPolicy WebFrame::getInsecureRequestPolicy() const {
|
| return toImplBase()->frame()->securityContext()->getInsecureRequestPolicy();
|
| }
|
|
|
| +std::vector<unsigned> WebFrame::getInsecureRequestToUpgrade() const {
|
| + SecurityContext::InsecureNavigationsSet* set =
|
| + toImplBase()->frame()->securityContext()->insecureNavigationsToUpgrade();
|
| + DCHECK(set);
|
| + return SecurityContext::serializeInsecureNavigationSet(*set);
|
| +}
|
| +
|
| void WebFrame::setFrameOwnerProperties(
|
| const WebFrameOwnerProperties& properties) {
|
| // At the moment, this is only used to replicate frame owner properties
|
|
|